Description: use tape instead of ava
Author: Xavier Guimard <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2020-02-02

--- a/test.js
+++ b/test.js
@@ -1,7 +1,8 @@
-import test from 'ava';
-import cliBoxes from '.';
+const test =require('tape');
+const cliBoxes =require('.');
 
 test('main', t => {
 	t.is(typeof cliBoxes, 'object');
 	t.is(cliBoxes.single.topLeft, '┌');
+	t.end();
 });
