mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-30 11:59:02 +08:00
fix(spec): fix failing draft specs
This commit is contained in:
parent
bde97c532b
commit
0322625380
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ describe "TaskQueue", ->
|
|||
it "only returns a task that matches the criteria", ->
|
||||
expect(TaskQueue.findTask(TaskSubclassB, {bProp: 'B1'})).toEqual(@subclassB1)
|
||||
expect(TaskQueue.findTask(TaskSubclassB, {bProp: 'B2'})).toEqual(@subclassB2)
|
||||
expect(TaskQueue.findTask(TaskSubclassB, {bProp: 'B3'})).toEqual(null)
|
||||
expect(TaskQueue.findTask(TaskSubclassB, {bProp: 'B3'})).toEqual(undefined)
|
||||
|
||||
describe "enqueue", ->
|
||||
beforeEach ->
|
||||
|
|
Loading…
Reference in a new issue