File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ doh.registerUrl("pluginsSync", "../plugins/sync.html");
68
68
doh . registerUrl ( "doublePluginCall" , "../plugins/double.html" ) ;
69
69
doh . registerUrl ( "pluginsNameOnly" , "../plugins/nameOnly.html" ) ;
70
70
doh . registerUrl ( "pluginsFromText" , "../plugins/fromText/fromText.html" ) ;
71
+ doh . registerUrl ( "pluginsVolatile" , "../plugins/volatile/volatile.html" ) ;
71
72
doh . registerUrl ( "text" , "../text/text.html" ) ;
72
73
doh . registerUrl ( "textOnly" , "../text/textOnly.html" ) ;
73
74
doh . registerUrl ( "textBuilt" , "../text/textBuilt.html" ) ;
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ function (pillow, blanket) {
16
16
t . is ( false , resource === blanket . pillowResource ) ;
17
17
18
18
//Make sure the paths after the counter ID are not relative.
19
- t . is ( true , resource . split ( ':' ) [ 1 ] . indexOf ( './pillow' ) ! == - 1 ) ;
20
- t . is ( true , pillow . resource . split ( ':' ) [ 1 ] . indexOf ( './pillow' ) ! == - 1 ) ;
21
- t . is ( true , blanket . pillowResource . split ( ':' ) [ 1 ] . indexOf ( '../pillow' ) ! == - 1 ) ;
22
- t . is ( true , blanket . resource . split ( ':' ) [ 1 ] . indexOf ( './blanket' ) ! == - 1 ) ;
19
+ t . is ( true , resource . split ( ':' ) [ 1 ] . indexOf ( './pillow' ) = == - 1 ) ;
20
+ t . is ( true , pillow . resource . split ( ':' ) [ 1 ] . indexOf ( './pillow' ) = == - 1 ) ;
21
+ t . is ( true , blanket . pillowResource . split ( ':' ) [ 1 ] . indexOf ( '../pillow' ) = == - 1 ) ;
22
+ t . is ( true , blanket . resource . split ( ':' ) [ 1 ] . indexOf ( './blanket' ) = == - 1 ) ;
23
23
}
24
24
]
25
25
) ;
You can’t perform that action at this time.
0 commit comments