From 847687d57f73478d0312d4d5c8d81cac6bbbab6f Mon Sep 17 00:00:00 2001 From: Rodrigo Date: Thu, 3 Sep 2020 23:23:00 -0400 Subject: [PATCH] Validate init module --- test/unit/init.spec.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/unit/init.spec.js b/test/unit/init.spec.js index e69de29..043808b 100644 --- a/test/unit/init.spec.js +++ b/test/unit/init.spec.js @@ -0,0 +1,7 @@ +import Init from '../../src/js/init' + +describe('Init Module', () => { + it('has a function named init', () => { + expect(typeof Init.init).toBe('function') + }) +})