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();
 });
