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

Commit 0e0c8b0

Browse files
committed
ie test revert
1 parent f98b78d commit 0e0c8b0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

karma.conf.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ module.exports = function(config) {
100100

101101
var customLaunchers;
102102

103+
// IE tests disabled for now
103104
/*
104105
customLaunchers = geSaLaKaCuLa({
105106
'Windows 7': {

test/custom-loader.spec.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
//
22

3-
var ie = typeof window != 'undefined' && window.navigator.userAgent.match(/Trident/);
4-
53
describe('Custom Loader', function () {
64

75
describe('#import', function () {
86

97
describe('scripts', function () {
10-
(ie ? it.skip : it)('should support ES6 scripts', function (done) {
8+
it('should support ES6 scripts', function (done) {
119
customLoader.import('test/loader/test')
1210
.then(function (m) {
1311
expect(m.loader).to.be.equal('custom');
1412
})
1513
.then(done, done)
1614
});
1715

18-
(ie ? it.skip : it)('should support AMD scripts', function (done) {
16+
it('should support AMD scripts', function (done) {
1917
customLoader.import('test/loader/amd')
2018
.then(function (m) {
2119
expect(m.format).to.be.equal('amd');

0 commit comments

Comments
 (0)