Skip to content

Commit 0c9d3e6

Browse files
committed
Fix unit tests
1 parent d07c8ae commit 0c9d3e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/services/ios-debugger-port-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ describe("iOSDebuggerPortService", () => {
157157
}
158158

159159
const promise = iOSDebuggerPortService.getPort({ deviceId: deviceId, appId: appId, projectDir: mockProjectDirObj.projectDir });
160-
clock.tick(10000);
160+
clock.tick(20000);
161161
const port = await promise;
162162
assert.deepEqual(port, testCase.emittedPort);
163163
});
@@ -171,7 +171,7 @@ describe("iOSDebuggerPortService", () => {
171171
}
172172

173173
const promise = iOSDebuggerPortService.getPort({ deviceId: deviceId, appId: appId, projectDir: mockProjectDirObj.projectDir });
174-
clock.tick(10000);
174+
clock.tick(20000);
175175
const port = await promise;
176176
assert.deepEqual(port, testCase.emittedPort);
177177
});

0 commit comments

Comments
 (0)