diff --git a/scripts/dataconnect-test/templates/connector.yaml b/scripts/dataconnect-test/templates/connector.yaml index 68215053ca4..307b8a6af51 100644 --- a/scripts/dataconnect-test/templates/connector.yaml +++ b/scripts/dataconnect-test/templates/connector.yaml @@ -1,2 +1,2 @@ -connectorId: "connectorId" +connectorId: "1" authMode: "PUBLIC" diff --git a/scripts/dataconnect-test/tests.ts b/scripts/dataconnect-test/tests.ts index 256e40d6888..b267fe04e91 100644 --- a/scripts/dataconnect-test/tests.ts +++ b/scripts/dataconnect-test/tests.ts @@ -24,7 +24,7 @@ function expected( schemaUpdateTime, connectors: [ { - connectorId: "connectorId", + connectorId: "1", connectorLastUpdated, }, ], @@ -145,7 +145,7 @@ describe("firebase deploy", () => { }); afterEach(async function (this) { - this.timeout(10000); + this.timeout(100000); // Need to wait a long time for cleanup. fs.rmSync(fdcTest, { recursive: true, force: true }); await cleanUpService(FIREBASE_PROJECT, serviceId, databaseId); });