Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: tests/test_packagerWebExt.py

Issue 29973555: Issue 7192 - Remove unused qunit/common.js file from webpack bundle (Closed)
Patch Set: Remove common.js from tox tests too Created Jan. 5, 2019, 12:55 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packagerChrome.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/test_packagerWebExt.py
diff --git a/tests/test_packagerWebExt.py b/tests/test_packagerWebExt.py
index b370932cce903ca4b65b3fefaa491eedcc408faf..2d30f0b2292d9cf1ba892de05a3781f0c8d2a62d 100644
--- a/tests/test_packagerWebExt.py
+++ b/tests/test_packagerWebExt.py
@@ -235,7 +235,6 @@ def lib_files(tmpdir):
files['lib/edge.js'] = 'var this_is_edge;'
files['ext/c.js'] = 'var this_is_c;'
files['ext/alias_c.js'] = 'var this_is_aliased_c;'
- files['qunit/common.js'] = 'var qunit = {};'
files['qunit/tests/some_test.js'] = 'var passed = true;'
libdir = tmpdir.mkdir('lib')
@@ -247,7 +246,6 @@ def lib_files(tmpdir):
ext_dir.join('a.js').write(files['ext/a.js'])
ext_dir.join('c.js').write(files['ext/c.js'])
qunit_dir = tmpdir.mkdir('qunit')
- qunit_dir.join('common.js').write(files['qunit/common.js'])
qunit_tests_dir = qunit_dir.mkdir('tests')
qunit_tests_dir.join('some_test.js').write(
files['qunit/tests/some_test.js'],
« no previous file with comments | « packagerChrome.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld