File: replace-ava-by-tape.patch

package info (click to toggle)
node-arr-exclude 2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 124 kB
  • sloc: javascript: 21; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: replace ava by tape
Author: Yadd <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2022-03-25

--- a/test.js
+++ b/test.js
@@ -1,8 +1,9 @@
-import test from 'ava';
+import test from 'tape';
 import arrayExclude from './index.js';
 
 test('main', t => {
 	t.deepEqual(arrayExclude(['a', 'b', 'c'], ['b']), ['a', 'c']);
 	t.deepEqual(arrayExclude([], ['a']), []);
 	t.deepEqual(arrayExclude(['a'], []), ['a']);
+	t.end();
 });