Skip to content

Commit

Permalink
Remove .only modifier from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
svsool committed Jul 21, 2020
1 parent df2f262 commit 8a2e01e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extensions/ReferenceHoverProvider.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ describe('ReferenceHoverProvider', () => {
expect(referenceHoverProvider.provideHover(doc, new vscode.Position(0, 4))).toBeNull();
});

it.only('should not provide hover for a link within fenced code block', async () => {
it('should not provide hover for a link within fenced code block', async () => {
const name0 = rndName();
const name1 = rndName();

Expand Down
2 changes: 1 addition & 1 deletion src/utils/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ describe('getWorkspaceCache()', () => {
});
});

describe.only('getRefUriUnderCursor()', () => {
describe('getRefUriUnderCursor()', () => {
beforeEach(closeEditorsAndCleanWorkspace);

afterEach(closeEditorsAndCleanWorkspace);
Expand Down

0 comments on commit 8a2e01e

Please sign in to comment.