Skip to content

Commit 44642f5

Browse files
committed
WIP
1 parent 2bfb61b commit 44642f5

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

firebase-vscode/src/test/default_wdio.conf.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@ export const config: WebdriverIO.Config = {
4040
beforeTest: async function () {
4141
const workbench = await browser.getWorkbench();
4242
const notifications = new Notifications(workbench);
43-
await notifications.installRecommendedExtension({
44-
extensionId: "graphql.vscode-graphql-syntax",
45-
message: "It is recommended to install GraphQL: Syntax Highlighter",
46-
});
43+
// ! Temporarily disable the installation of the recommended extension
44+
// await notifications.installRecommendedExtension({
45+
// extensionId: "graphql.vscode-graphql-syntax",
46+
// message: "It is recommended to install GraphQL: Syntax Highlighter",
47+
// });
4748
},
4849

4950
afterTest: async function (test) {
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
connectorId: "connectorId"
1+
connectorId: "connector-id"
22
authMode: "PUBLIC"

scripts/dataconnect-test/tests.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function expected(
2424
schemaUpdateTime,
2525
connectors: [
2626
{
27-
connectorId: "connectorId",
27+
connectorId: "connector-id",
2828
connectorLastUpdated,
2929
},
3030
],
@@ -145,7 +145,7 @@ describe("firebase deploy", () => {
145145
});
146146

147147
afterEach(async function (this) {
148-
this.timeout(10000);
148+
this.timeout(100000); // Need to wait a long time for cleanup.
149149
fs.rmSync(fdcTest, { recursive: true, force: true });
150150
await cleanUpService(FIREBASE_PROJECT, serviceId, databaseId);
151151
});

0 commit comments

Comments
 (0)