Skip to content

Commit 007ddfc

Browse files
committed
Move remoteconfig tests (#7318)
1 parent 4f92f0f commit 007ddfc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/test/remoteconfig/get.spec.ts renamed to src/remoteconfig/get.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { expect } from "chai";
2-
import { remoteConfigApiOrigin } from "../../api";
2+
import { remoteConfigApiOrigin } from "../api";
33
import * as nock from "nock";
44

5-
import * as remoteconfig from "../../remoteconfig/get";
6-
import { RemoteConfigTemplate } from "../../remoteconfig/interfaces";
7-
import { FirebaseError } from "../../error";
5+
import * as remoteconfig from "./get";
6+
import { RemoteConfigTemplate } from "./interfaces";
7+
import { FirebaseError } from "../error";
88

99
const PROJECT_ID = "the-remoteconfig-test-project";
1010

src/test/remoteconfig/rollback.spec.ts renamed to src/remoteconfig/rollback.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { expect } from "chai";
2-
import { remoteConfigApiOrigin } from "../../api";
2+
import { remoteConfigApiOrigin } from "../api";
33
import * as nock from "nock";
44

5-
import { RemoteConfigTemplate } from "../../remoteconfig/interfaces";
6-
import * as remoteconfig from "../../remoteconfig/rollback";
7-
import { FirebaseError } from "../../error";
5+
import { RemoteConfigTemplate } from "./interfaces";
6+
import * as remoteconfig from "./rollback";
7+
import { FirebaseError } from "../error";
88

99
const PROJECT_ID = "the-remoteconfig-test-project";
1010

0 commit comments

Comments
 (0)