Skip to content

Commit c9090bd

Browse files
committed
improve test assertion
1 parent b8371ef commit c9090bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ts/tests/connectors.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ describe("connector", () => {
107107
console.log(read)
108108
expect(read.name).toBe("from api")
109109
let configDoc = read.configDoc;
110-
expect(configDoc!["seed-urls"]).toBe([ 'https://docs.vectorize.io', 'https://vectorize.io' ])
110+
expect(configDoc!["seed-urls"]).toStrictEqual([ 'https://docs.vectorize.io', 'https://vectorize.io' ])
111111
expect(read.createdAt).toBeTruthy()
112112
await connectorsApi.deleteSourceConnector({
113113
organization: testContext.orgId,

0 commit comments

Comments
 (0)