File: disable-test-that-needs-a-recent-source-map.diff

package info (click to toggle)
node-rollup-plugin-replace 2.3.4%2Brepack%2B~2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,820 kB
  • sloc: javascript: 12,560; makefile: 23
file content (23 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: Disable one test that needs a newer source-map
Author: Xavier Guimard <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2019-08-07

--- a/legacy/test/test.js
+++ b/legacy/test/test.js
@@ -126,6 +126,7 @@
 			assert.deepEqual(valuesMap, { ANSWER: '42' });
 		});
 
+		/*
 		it('generates sourcemaps', async () => {
 			const bundle = await rollup({
 				input: 'main.js',
@@ -170,6 +171,7 @@
 				assert.equal(loc.column, 8);
 			});
 		});
+		*/
 
 		it('does not generate sourcemaps if disabled', async () => {
 			let warned = false;