Skip to content

Commit 2151b75

Browse files
committed
Removed onlys
1 parent d0f5690 commit 2151b75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/storage/test/browser/connection.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { SinonFakeXMLHttpRequest, useFakeXMLHttpRequest } from 'sinon';
2020
import { ErrorCode } from '../../src/implementation/connection';
2121
import { XhrBytesConnection } from '../../src/platform/browser/connection';
2222

23-
describe.only('Connections', () => {
23+
describe('Connections', () => {
2424
it('XhrConnection.send() should not reject on network errors', async () => {
2525
const fakeXHR = useFakeXMLHttpRequest();
2626
const connection = new XhrBytesConnection();
@@ -31,7 +31,7 @@ describe.only('Connections', () => {
3131
expect(connection.getErrorCode()).to.equal(ErrorCode.NETWORK_ERROR);
3232
fakeXHR.restore();
3333
});
34-
it.only('XhrConnection.send() should send credentials when using cloud workstation', async () => {
34+
it('XhrConnection.send() should send credentials when using cloud workstation', async () => {
3535
const fakeXHR = useFakeXMLHttpRequest();
3636
const connection = new XhrBytesConnection();
3737
const sendPromise = connection.send(

0 commit comments

Comments
 (0)