Skip to content

Commit

Permalink
chore(test-utils): edit get instance parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
rudemex committed May 18, 2022
1 parent efb3265 commit bcf36ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/test-utils/src/testcontainers/testContainersTD.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class TestContainersTD {
public static getInstance(_image?: string, _options?: ITestContainerOptions): TestContainersTD {
return (
TestContainersTD._instance ??
(TestContainersTD._instance = new TestContainersTD(_image, _options))
(TestContainersTD._instance = new TestContainersTD(_image, _options, true))
);
}

Expand Down

0 comments on commit bcf36ca

Please sign in to comment.