aboutsummaryrefslogtreecommitdiffstats
path: root/test.js
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@eficode.com>2018-08-16 19:06:42 +0300
committerJan Tuomi <jan.tuomi@eficode.com>2018-08-16 19:06:42 +0300
commita4e0072a9cf1c6a957251bbc1a9a927f7b75f89a (patch)
tree784213651b7603a5c7bc1b3658f35c852be45576 /test.js
parent331b2cd1e8f26c49f923038ee392a903f458c229 (diff)
Add stupid test
Diffstat (limited to 'test.js')
-rw-r--r--test.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test.js b/test.js
index 7d1f76a..e2b2a69 100644
--- a/test.js
+++ b/test.js
@@ -4,3 +4,7 @@ import main from './index';
test('Test main', (t) => {
t.is(main(), 'Yea boi');
});
+
+test('1 != 2', (t) => {
+ t.not(1, 2);
+});