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

Commit 280d8db

Browse files
committed
ie8 tests
1 parent 7fcbaed commit 280d8db

File tree

4 files changed

+29
-26
lines changed

4 files changed

+29
-26
lines changed

karma.conf.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ module.exports = function(config) {
4444
: 'node_modules/traceur/bin/traceur.js')
4545
: ''],
4646

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

5050
'test/_browser.js',
5151
'test/browser-script-type-module.js',
5252
'test/custom-loader.js',
5353

54-
[!options.ie8 ? 'test/*.spec.js' : 'test/*.normalize.spec.js'],
54+
[!options.ie8 ? 'test/*.spec.js' : ['test/system.normalize.spec.js', 'test/custom-loader.spec.js']],
5555

5656
{pattern: 'test/{loader,loads,syntax,worker}/**/*', included: false},
5757
{pattern: 'node_modules/traceur/bin/traceur.js', included: false},
@@ -73,7 +73,8 @@ module.exports = function(config) {
7373
timeout: 8000
7474
},
7575
system: {
76-
transpiler: options.babel
76+
ie8: options.ie8,
77+
transpiler: options.babel
7778
? 'babel'
7879
: options.typescript
7980
? 'typescript'

test/custom-loader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
CustomLoader.prototype.instantiate = function (load) {
8080
if (load.name.match(/(traceur|babel.+\/browser).js$/)) {
8181
var transpiler = this.transpiler;
82-
return System.import(transpiler).then(function() {
82+
return System['import'](transpiler).then(function() {
8383
return {
8484
deps: [],
8585
execute: function() {

test/custom-loader.spec.js

+23-21
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ describe('Custom Loader', function () {
55
describe('#import', function () {
66

77
describe('scripts', function () {
8-
it('should support ES6 scripts', function (done) {
9-
customLoader.import('test/loader/test.js')
10-
.then(function (m) {
11-
expect(m.loader).to.be.equal('custom');
12-
})
13-
.then(done, done)
14-
});
8+
if (!__karma__.config.system.ie8)
9+
it('should support ES6 scripts', function (done) {
10+
customLoader['import']('test/loader/test.js')
11+
.then(function (m) {
12+
expect(m.loader).to.be.equal('custom');
13+
})
14+
.then(done, done)
15+
});
1516

1617
it('should support AMD scripts', function (done) {
17-
customLoader.import('test/loader/amd.js')
18+
customLoader['import']('test/loader/amd.js')
1819
.then(function (m) {
1920
expect(m.format).to.be.equal('amd');
2021
})
@@ -24,13 +25,14 @@ describe('Custom Loader', function () {
2425

2526
describe('special #locate path rule', function a() {
2627

27-
it('should support special loading rules', function (done) {
28-
customLoader.import('path/custom.js')
29-
.then(function (m) {
30-
expect(m.path).to.be.ok();
31-
})
32-
.then(done, done);
33-
})
28+
if (!__karma__.config.system.ie8)
29+
it('should support special loading rules', function (done) {
30+
customLoader['import']('path/custom.js')
31+
.then(function (m) {
32+
expect(m.path).to.be.ok();
33+
})
34+
.then(done, done);
35+
});
3436

3537
});
3638

@@ -42,39 +44,39 @@ describe('Custom Loader', function () {
4244
var base = baseURL + 'test/loader/';
4345

4446
it('should make the normalize throw', function (done) {
45-
customLoader.import('test/loader/error1-parent.js')
47+
customLoader['import']('test/loader/error1-parent.js')
4648
.then(supposeToFail, function (e) {
4749
expect(e.toString()).to.contain('Error loading ' + base + 'error1-parent.js');
4850
})
4951
.then(done, done);
5052
});
5153

5254
it('should make the locate throw', function (done) {
53-
customLoader.import('test/loader/error2')
55+
customLoader['import']('test/loader/error2')
5456
.then(supposeToFail, function (e) {
5557
expect(e.toString()).to.be.contain('Error loading ' + base + 'error2');
5658
})
5759
.then(done, done);
5860
});
5961

6062
it('should make the fetch throw', function (done) {
61-
customLoader.import('test/loader/error3')
63+
customLoader['import']('test/loader/error3')
6264
.then(supposeToFail, function (e) {
6365
expect(e.toString()).to.be.contain('Error loading ' + base + 'error3');
6466
})
6567
.then(done, done);
6668
});
6769

6870
it('should make the translate throw', function (done) {
69-
customLoader.import('test/loader/error4')
71+
customLoader['import']('test/loader/error4')
7072
.then(supposeToFail, function (e) {
7173
expect(e.toString()).to.be.contain('Error loading ' + base + 'error4');
7274
})
7375
.then(done, done);
7476
});
7577

7678
it('should make the instantiate throw', function (done) {
77-
customLoader.import('test/loader/error5')
79+
customLoader['import']('test/loader/error5')
7880
.then(supposeToFail, function (e) {
7981
expect(e.toString()).to.be.contain('Error loading ' + base + 'error5');
8082
})
@@ -89,7 +91,7 @@ describe('Custom Loader', function () {
8991
it('should support async normalization', function (done) {
9092
customLoader.normalize('asdfasdf')
9193
.then(function (normalized) {
92-
return customLoader.import(normalized);
94+
return customLoader['import'](normalized);
9395
})
9496
.then(function (m) {
9597
expect(m.n).to.be.equal('n');

test/loader/custom.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export var path = true;
1+
export var path = true;

0 commit comments

Comments
 (0)