Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wilau2 committed Dec 5, 2019
1 parent 3b1f21b commit 101de49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tasks.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const { tasks, autoTasks } = require('../source/internals/tasks');
const plugin = require('../source/plugin');

describe('Tasks List', () => {
it('should have twelve tasks in total', () => {
it('should have the correct number of tasks in total', () => {
const input = Object.keys(tasks).length;
const expected = 13;
const expected = 14;

expect(input).toEqual(expected);
});
Expand Down

0 comments on commit 101de49

Please sign in to comment.