Skip to content

Commit 05e6776

Browse files
committed
update
1 parent 4371405 commit 05e6776

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/nodeRequestHandler.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ describe('NodeRequestHandler', () => {
202202
vi.clearAllTimers();
203203
});
204204

205-
it.only('should reject the response promise and abort the request when the response is not received before the timeout', async () => {
205+
it('should reject the response promise and abort the request when the response is not received before the timeout', async () => {
206206
const scope = nock(host)
207207
.get(path)
208208
.delay({ head: 2000, body: 2000 })

tests/vuidManager.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ describe('VuidManager', () => {
5555
expect(VuidManager.isVuid('123')).toBe(false);
5656
});
5757

58-
it.only('should auto-save and auto-load', async () => {
58+
it('should auto-save and auto-load', async () => {
5959
const cache = instance(mockCache);
6060

6161
await cache.remove('optimizely-odp');

0 commit comments

Comments
 (0)