File: tap8.patch

package info (click to toggle)
node-inline-source-map 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 164 kB
  • ctags: 30
  • sloc: makefile: 4; sh: 2
file content (42 lines) | stat: -rw-r--r-- 1,104 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Description: Fix build failure with node-tap v 8.0.0
 Call t.end to finish tests (latest tap compatibility)
Author: Jérémy Lal <kapouer@melix.org>
Bug: https://github.com/thlorenz/inline-source-map/issues/18
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844938
Forwarded: https://github.com/thlorenz/inline-source-map/pull/19
Applied-Upstream: Not yet
Last-Update: 2016-11-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- node-inline-source-map.orig/test/inline-source-map.js
+++ node-inline-source-map/test/inline-source-map.js
@@ -226,6 +226,7 @@
     )
     t.end()
   })
+  t.end()
 })
 
 test('given mappings, with one having no original', function (t) {
@@ -312,6 +313,7 @@
     )
     t.end()
   })
+  t.end()
 });
 
 test('inline mapping url with charset opt', function(t){
@@ -339,4 +341,5 @@
 
     t.end();
   });
+  t.end();
 });
--- node-inline-source-map.orig/test/source-content.js
+++ node-inline-source-map/test/source-content.js
@@ -140,4 +140,5 @@
     t.deepEqual(gen.toJSON()["sourcesContent"], [""])
     t.end()
   });
+  t.end();
 })