X Tutup
Skip to content

Commit af64895

Browse files
committed
remove onlys
1 parent 00e8713 commit af64895

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spec/api-ipc-main-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const comparePaths = (path1, path2) => {
1616
assert.equal(path1, path2)
1717
}
1818

19-
describe.only('ipc main module', () => {
19+
describe('ipc main module', () => {
2020
const fixtures = path.join(__dirname, 'fixtures')
2121

2222
let w = null

spec/api-ipc-renderer-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const comparePaths = (path1, path2) => {
1616
assert.equal(path1, path2)
1717
}
1818

19-
describe.only('ipc renderer module', () => {
19+
describe('ipc renderer module', () => {
2020
const fixtures = path.join(__dirname, 'fixtures')
2121

2222
let w = null

spec/api-remote-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const comparePaths = (path1, path2) => {
1515
assert.equal(path1, path2)
1616
}
1717

18-
describe.only('remote module', () => {
18+
describe('remote module', () => {
1919
const fixtures = path.join(__dirname, 'fixtures')
2020

2121
let w = null

0 commit comments

Comments
 (0)
X Tutup