File: tap8.patch

package info (click to toggle)
node-inline-source-map 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 196 kB
  • sloc: javascript: 532; makefile: 12; sh: 3
file content (42 lines) | stat: -rw-r--r-- 1,010 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/
--- a/test/inline-source-map.js
+++ b/test/inline-source-map.js
@@ -229,6 +229,7 @@
     )
     t.end()
   })
+  t.end()
 })
 
 test('given mappings, with one having no original', function (t) {
@@ -315,6 +316,7 @@
     )
     t.end()
   })
+  t.end()
 });
 
 test('inline mapping url with charset opt', function(t){
@@ -342,4 +344,5 @@
 
     t.end();
   });
+  t.end();
 });
--- a/test/source-content.js
+++ b/test/source-content.js
@@ -143,4 +143,5 @@
     t.deepEqual(gen.toJSON()["sourcesContent"], [""])
     t.end()
   });
+  t.end();
 })