Skip to content
Browse files

Remove example test file.

  • Loading branch information...
1 parent b687e7d commit 21cee815de8cfc2c920489dbbd5cd43d1354009b @terakilobyte terakilobyte committed
Showing with 0 additions and 24 deletions.
  1. +0 −24 tests/test.spec.js
View
24 tests/test.spec.js
@@ -1,24 +0,0 @@
-import test from 'tape';
-
-test('tape.spec', (t) => {
-
- t.test('Test 1 should fail', (t) => {
-
- const actual = typeof Array.prototype.map;
- const expected = 'object';
-
- t.equals(actual, expected, 'typeof Array.prototype.map is "object"');
- // t.end explicitly tells the test to end if you don't want to use plan
- t.end();
- });
-
- t.test('Test 2 should pass', (t) => {
- const actual = typeof Array.prototype.map;
- const expected = 'function';
-
- t.equals(actual, expected, 'typeof Array.prototype.map is "function"');
- t.end();
- });
-
- t.end();
-});

0 comments on commit 21cee81

Please sign in to comment.
Something went wrong with that request. Please try again.