Skip to content

Commit 9329629

Browse files
committed
fix bug about krama run twice
1 parent fd5bd99 commit 9329629

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

test/unit/karma.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ module.exports = function(config) {
3939
client: {
4040
mocha: {
4141
timeout: process.env.timeout || 6000
42-
}
42+
},
43+
captureConsole: false
4344
}
4445
})
4546
}

test/unit/specs/actionCol.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ describe('server actionColDef', _ => {
163163
await sleep(1000)
164164
await actionColRender(vm, spy1, spy2)
165165
})
166-
it.only('custom actionCol render', async () => {
166+
167+
it('custom actionCol render', async () => {
167168
let spy1 = sinon.spy()
168169
let spy2 = sinon.spy()
169170
let spy3 = sinon.spy()

test/unit/specs/checkFilters.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ describe('client checkFilters', _ => {
435435
})
436436
})
437437

438-
describe.only('server checkFilter', _ => {
438+
describe('server checkFilter', _ => {
439439
let vm
440440
afterEach(function() {
441441
vm && destroyVM(vm)

0 commit comments

Comments
 (0)