From 101de49761738c930097920dacc447ac8ffaca0c Mon Sep 17 00:00:00 2001 From: wlauze Date: Wed, 4 Dec 2019 19:00:19 -0500 Subject: [PATCH] fix: tests --- test/tasks.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tasks.test.js b/test/tasks.test.js index 2f24681..f52886f 100644 --- a/test/tasks.test.js +++ b/test/tasks.test.js @@ -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); });