Skip to content

Commit 38332d3

Browse files
committed
Increase timeout for tipNotificationService tests to fix CI failures
1 parent 635b408 commit 38332d3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/extension/tipsNotificationService/tipsNotificationService.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ suite("tipNotificationService", function () {
3434
let tipNotificationService: TipNotificationService;
3535

3636
setup(async function () {
37+
this.timeout(5000);
3738
tipNotificationService = TipNotificationService.getInstance();
3839
config.delete(tipsConfigName);
3940
await SettingsHelper.setShowTips(true);
@@ -47,7 +48,8 @@ suite("tipNotificationService", function () {
4748
});
4849

4950
suite("initializeTipsConfig", function () {
50-
test("should create correct tips config", async () => {
51+
test("should create correct tips config", async function () {
52+
this.timeout(5000);
5153
await (<any>tipNotificationService).initializeTipsConfig();
5254
const tipsConfig: TipsConfig = (<any>tipNotificationService).tipsConfig;
5355

0 commit comments

Comments
 (0)