File: 00-use-tap-instead-of-tape.diff

package info (click to toggle)
node-cli-width 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 112 kB
  • ctags: 10
  • sloc: makefile: 4; sh: 2
file content (18 lines) | stat: -rw-r--r-- 482 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Use tap instead of tape
 Because node-tap is in Debian and tape is not.
Author: Paolo Greppi <paolo.greppi@libpf.com>
Forwarded: not-needed

Index: node-cli-width/test/index.js
===================================================================
--- node-cli-width.orig/test/index.js
+++ node-cli-width/test/index.js
@@ -1,7 +1,7 @@
 'use strict';
 
 var tty = require('tty');
-var test = require('tape');
+var test = require('tap').test;
 var lib = require('../');