@@ -5,16 +5,17 @@ describe('Custom Loader', function () {
5
5
describe ( '#import' , function ( ) {
6
6
7
7
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
+ } ) ;
15
16
16
17
it ( 'should support AMD scripts' , function ( done ) {
17
- customLoader . import ( 'test/loader/amd.js' )
18
+ customLoader [ ' import' ] ( 'test/loader/amd.js' )
18
19
. then ( function ( m ) {
19
20
expect ( m . format ) . to . be . equal ( 'amd' ) ;
20
21
} )
@@ -24,13 +25,14 @@ describe('Custom Loader', function () {
24
25
25
26
describe ( 'special #locate path rule' , function a ( ) {
26
27
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
+ } ) ;
34
36
35
37
} ) ;
36
38
@@ -42,39 +44,39 @@ describe('Custom Loader', function () {
42
44
var base = baseURL + 'test/loader/' ;
43
45
44
46
it ( 'should make the normalize throw' , function ( done ) {
45
- customLoader . import ( 'test/loader/error1-parent.js' )
47
+ customLoader [ ' import' ] ( 'test/loader/error1-parent.js' )
46
48
. then ( supposeToFail , function ( e ) {
47
49
expect ( e . toString ( ) ) . to . contain ( 'Error loading ' + base + 'error1-parent.js' ) ;
48
50
} )
49
51
. then ( done , done ) ;
50
52
} ) ;
51
53
52
54
it ( 'should make the locate throw' , function ( done ) {
53
- customLoader . import ( 'test/loader/error2' )
55
+ customLoader [ ' import' ] ( 'test/loader/error2' )
54
56
. then ( supposeToFail , function ( e ) {
55
57
expect ( e . toString ( ) ) . to . be . contain ( 'Error loading ' + base + 'error2' ) ;
56
58
} )
57
59
. then ( done , done ) ;
58
60
} ) ;
59
61
60
62
it ( 'should make the fetch throw' , function ( done ) {
61
- customLoader . import ( 'test/loader/error3' )
63
+ customLoader [ ' import' ] ( 'test/loader/error3' )
62
64
. then ( supposeToFail , function ( e ) {
63
65
expect ( e . toString ( ) ) . to . be . contain ( 'Error loading ' + base + 'error3' ) ;
64
66
} )
65
67
. then ( done , done ) ;
66
68
} ) ;
67
69
68
70
it ( 'should make the translate throw' , function ( done ) {
69
- customLoader . import ( 'test/loader/error4' )
71
+ customLoader [ ' import' ] ( 'test/loader/error4' )
70
72
. then ( supposeToFail , function ( e ) {
71
73
expect ( e . toString ( ) ) . to . be . contain ( 'Error loading ' + base + 'error4' ) ;
72
74
} )
73
75
. then ( done , done ) ;
74
76
} ) ;
75
77
76
78
it ( 'should make the instantiate throw' , function ( done ) {
77
- customLoader . import ( 'test/loader/error5' )
79
+ customLoader [ ' import' ] ( 'test/loader/error5' )
78
80
. then ( supposeToFail , function ( e ) {
79
81
expect ( e . toString ( ) ) . to . be . contain ( 'Error loading ' + base + 'error5' ) ;
80
82
} )
@@ -89,7 +91,7 @@ describe('Custom Loader', function () {
89
91
it ( 'should support async normalization' , function ( done ) {
90
92
customLoader . normalize ( 'asdfasdf' )
91
93
. then ( function ( normalized ) {
92
- return customLoader . import ( normalized ) ;
94
+ return customLoader [ ' import' ] ( normalized ) ;
93
95
} )
94
96
. then ( function ( m ) {
95
97
expect ( m . n ) . to . be . equal ( 'n' ) ;
0 commit comments