Skip to content

Commit 9e5740f

Browse files
aepflilukas-reining
andcommitted
Update libs/providers/flagd/src/e2e/tests/rpc-provider.spec.ts
Co-authored-by: Lukas Reining <[email protected]> Signed-off-by: Simon Schrottner <[email protected]>
1 parent 0551217 commit 9e5740f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: libs/providers/flagd/src/e2e/tests/rpc-provider.spec.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ describe('rpc', () => {
7171
afterAll(async () => {
7272
await OpenFeature.close();
7373
for (const container of containers) {
74-
container.stop();
74+
try {
75+
await container.stop();
76+
} catch {
77+
console.warn(`Failed to stop container ${container.getName()}`);
78+
}
7579
}
7680
});
7781
evaluation();

0 commit comments

Comments
 (0)