Skip to content

Commit 7d0a992

Browse files
committed
Fix NoWorkResult tests
1 parent 5134979 commit 7d0a992

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/no-work-result.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ test('executes on finally callback', () => {
9999
let mockCallbackHaveBeenCalled = 0
100100
let mockCallback = (): void => {
101101
mockCallbackHaveBeenCalled++
102-
103102
}
104103
return new NoWorkResult(processor, 'a {}', {})
105104
.finally(mockCallback)
@@ -112,3 +111,5 @@ test('prints its object type', () => {
112111
let result = new NoWorkResult(processor, 'a {}', {})
113112
is(Object.prototype.toString.call(result), '[object NoWorkResult]')
114113
})
114+
115+
test.run()

0 commit comments

Comments
 (0)