Skip to content

Commit a360ba2

Browse files
chore: fix flaky unit test
1 parent d6a59ce commit a360ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/common/test/unit-tests/services/json-file-settings-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ describe("jsonFileSettingsService", () => {
129129
const result = await new Promise((resolve, reject) => {
130130
setTimeout(() => {
131131
jsonFileSettingsService.getSettingValue<number>("prop1", { cacheTimeout: 1 }).then(resolve, reject);
132-
}, 2);
132+
}, 10);
133133
});
134134

135135
assert.equal(result, null);

0 commit comments

Comments
 (0)