refactor(tests): do not check strictly for the tipi network (#2062)

This commit is contained in:
Stavros 2024-01-14 22:27:19 +02:00 committed by GitHub
parent a4da2830b8
commit c780e2a253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -259,9 +259,9 @@ describe("App configs", () => {
expect(dockerCompose.services[app.id]).toBeDefined();
expect(dockerCompose.services[app.id].networks).toBeDefined();
expect(dockerCompose.services[app.id].networks).toStrictEqual([
"tipi_main_network",
]);
expect(dockerCompose.services[app.id].networks).toContain(
"tipi_main_network"
);
}
});
});