Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit a622408

Browse files
committed
re-enable tests
1 parent 59f0e76 commit a622408

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ node_js:
66
- '0.10'
77
- '0.11'
88
- '0.12'
9-
# - 'iojs'
9+
- 'iojs'
1010
env:
1111
global:
1212
- SAUCE_LABS=false PARSER=false OPTIONS=""
@@ -22,10 +22,10 @@ matrix:
2222
env: SAUCE_LABS=true PARSER="babel"
2323
- node_js: "0.10"
2424
env: SAUCE_LABS=true PARSER="typescript"
25-
# - node_js: "0.10"
26-
# env: SAUCE_LABS=true PARSER="traceur" OPTIONS="--ie8"
27-
# - node_js: "0.10"
28-
# env: SAUCE_LABS=true PARSER="babel" OPTIONS="--ie8"
25+
- node_js: "0.10"
26+
env: SAUCE_LABS=true PARSER="traceur" OPTIONS="--ie8"
27+
- node_js: "0.10"
28+
env: SAUCE_LABS=true PARSER="babel" OPTIONS="--ie8"
2929
before_install:
3030
- export CHROME_BIN=chromium-browser
3131
- export DISPLAY=:99.0

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = function(config) {
4545
: ''],
4646

4747
[options.polyfill ? 'node_modules/when/es6-shim/Promise.js' : ''],
48-
'dist/es6-module-loader-dev.src.js',
48+
[options.polyfill ? 'dist/es6-module-loader-dev.js' : 'dist/es6-module-loader-dev.src.js'],
4949

5050
'test/_browser.js',
5151
'test/browser-script-type-module.js',

test/custom-loader.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('Custom Loader', function () {
55
describe('#import', function () {
66

77
describe('scripts', function () {
8-
if (typeof __karma__ == 'undefined' || __karma__.config.system.ie8)
8+
if (typeof __karma__ == 'undefined' || !__karma__.config.system.ie8)
99
it('should support ES6 scripts', function(done) {
1010
customLoader['import']('test/loader/test.js')
1111
.then(function (m) {

0 commit comments

Comments
 (0)