Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2894ec9

Browse files
committed
Remove .onlys
1 parent 85d8ec9 commit 2894ec9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

test/controllers/file-patch-controller.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function createComponent(repository, filePath) {
7373
);
7474
}
7575

76-
describe.only('FilePatchController', function() {
76+
describe('FilePatchController', function() {
7777
afterEach(function() {
7878
atomEnv.destroy();
7979
});
@@ -317,7 +317,7 @@ describe.only('FilePatchController', function() {
317317
});
318318

319319
describe('integration tests', function() {
320-
describe.only('handling symlink files', function() {
320+
describe('handling symlink files', function() {
321321
async function indexModeAndOid(repository, filename) {
322322
const output = await repository.git.exec(['ls-files', '-s', '--', filename]);
323323
if (output) {
@@ -328,7 +328,7 @@ describe.only('FilePatchController', function() {
328328
}
329329
}
330330

331-
it.only('stages symlink change when staging added lines that depend on change', async function() {
331+
it('stages symlink change when staging added lines that depend on change', async function() {
332332
const workingDirPath = await cloneRepository('symlinks');
333333
const repository = await buildRepository(workingDirPath);
334334

@@ -414,7 +414,7 @@ describe.only('FilePatchController', function() {
414414
assert.equal(stagedFiles[deletedFileAddedSymlinkPath], 'deleted');
415415
});
416416

417-
it.only('unstages file creation when all added lines are unstaged', async function() {
417+
it('unstages file creation when all added lines are unstaged', async function() {
418418
const workingDirPath = await cloneRepository('symlinks');
419419
const repository = await buildRepository(workingDirPath);
420420

test/models/file-patch.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ describe('FilePatch', function() {
291291
`);
292292
});
293293

294-
it.only('handles typechange patches for a symlink replaced with a file', async function() {
294+
it('handles typechange patches for a symlink replaced with a file', async function() {
295295
const workdirPath = await cloneRepository('symlinks');
296296
const repository = await buildRepository(workdirPath);
297297

@@ -322,7 +322,7 @@ describe('FilePatch', function() {
322322
`);
323323
});
324324

325-
it.only('handles typechange patches for a file replaced with a symlink', async function() {
325+
it('handles typechange patches for a file replaced with a symlink', async function() {
326326
const workdirPath = await cloneRepository('symlinks');
327327
const repository = await buildRepository(workdirPath);
328328

@@ -353,7 +353,7 @@ describe('FilePatch', function() {
353353
});
354354
});
355355

356-
describe.only('getHeaderString()', function() {
356+
describe('getHeaderString()', function() {
357357
it('formats paths with git path separators', function() {
358358
const oldPath = path.join('foo', 'bar', 'old.js');
359359
const newPath = path.join('baz', 'qux', 'new.js');

0 commit comments

Comments
 (0)