Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed May 15, 2019
1 parent d7a39da commit 300ebf5
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,7 +29,7 @@
"is-reference": "^1.1.2",
"magic-string": "^0.25.2",
"resolve": "^1.10.1",
"rollup-pluginutils": "^2.6.0"
"rollup-pluginutils": "^2.7.0"
},
"devDependencies": {
"@babel/core": "7.4.4",
Expand Down
2 changes: 1 addition & 1 deletion test/form/constant-template-literal/output.js
@@ -1,5 +1,5 @@
import foo from '_tape?commonjs-proxy';
import 'tape';
import foo from '_tape?commonjs-proxy';

console.log(foo);

Expand Down
1 change: 1 addition & 0 deletions test/form/ignore-ids-function/output.js
@@ -1,4 +1,5 @@
import 'bar';
import bar from '_bar?commonjs-proxy';

var foo = require( 'foo' );

Expand Down
1 change: 1 addition & 0 deletions test/form/ignore-ids/output.js
@@ -1,4 +1,5 @@
import 'bar';
import bar from '_bar?commonjs-proxy';

var foo = require( 'foo' );

Expand Down
2 changes: 1 addition & 1 deletion test/form/multiple-var-declarations-b/output.js
@@ -1,5 +1,5 @@
import a from '_./a?commonjs-proxy';
import './a';
import a from '_./a?commonjs-proxy';

var b = 42;

Expand Down
2 changes: 1 addition & 1 deletion test/form/multiple-var-declarations-c/output.js
@@ -1,5 +1,5 @@
import b from '_./b?commonjs-proxy';
import './b';
import b from '_./b?commonjs-proxy';

var a = 'a'
, c = 'c';
Expand Down
4 changes: 2 additions & 2 deletions test/form/multiple-var-declarations/output.js
@@ -1,7 +1,7 @@
import require$$0 from '_./a?commonjs-proxy';
import b from '_./b?commonjs-proxy';
import './a';
import './b';
import require$$0 from '_./a?commonjs-proxy';
import b from '_./b?commonjs-proxy';

var a = require$$0();

Expand Down
2 changes: 1 addition & 1 deletion test/form/require-collision/output.js
@@ -1,5 +1,5 @@
import require$$1 from '_foo?commonjs-proxy';
import 'foo';
import require$$1 from '_foo?commonjs-proxy';

(function() {
var foo = require$$1;
Expand Down

0 comments on commit 300ebf5

Please sign in to comment.