Browse Source

beef up test

legacy-quote-reserved-properties
Rich-Harris 8 years ago
parent
commit
9751849e7f
  1. 2
      test/form/custom-module-context/_expected/amd.js
  2. 2
      test/form/custom-module-context/_expected/cjs.js
  3. 2
      test/form/custom-module-context/_expected/es.js
  4. 2
      test/form/custom-module-context/_expected/iife.js
  5. 2
      test/form/custom-module-context/_expected/umd.js
  6. 1
      test/form/custom-module-context/foo.js
  7. 1
      test/form/custom-module-context/main.js

2
test/form/custom-module-context/_expected/amd.js

@ -1,5 +1,7 @@
define(function () { 'use strict';
undefined.prop = 'nope';
lolwut.prop = '???';
});

2
test/form/custom-module-context/_expected/cjs.js

@ -1,3 +1,5 @@
'use strict';
undefined.prop = 'nope';
lolwut.prop = '???';

2
test/form/custom-module-context/_expected/es.js

@ -1 +1,3 @@
undefined.prop = 'nope';
lolwut.prop = '???';

2
test/form/custom-module-context/_expected/iife.js

@ -1,6 +1,8 @@
(function () {
'use strict';
undefined.prop = 'nope';
lolwut.prop = '???';
}());

2
test/form/custom-module-context/_expected/umd.js

@ -4,6 +4,8 @@
(factory());
}(this, (function () { 'use strict';
undefined.prop = 'nope';
lolwut.prop = '???';
})));

1
test/form/custom-module-context/foo.js

@ -0,0 +1 @@
this.prop = 'nope';

1
test/form/custom-module-context/main.js

@ -1 +1,2 @@
import './foo.js';
this.prop = '???';

Loading…
Cancel
Save