File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 14
14
"ignore-sync" : " ignore-sync ." ,
15
15
"lint" : " eslint \" **/*.{html,js,ts}\" " ,
16
16
"nuke" : " rm -rf package-lock.json node_modules && npm install && lerna exec \" rm -f package-lock.json\" && lerna clean --yes && lerna bootstrap && lerna exec --stream -- \" test -f package-lock.json || npm install --package-lock-only\" " ,
17
- "test" : " wct && lerna run test --concurrency 1 --stream --no-bail" ,
17
+ "test" : " EXIT_CODE=0; wct || EXIT_CODE=1; lerna run test --concurrency 1 --stream --no-bail || EXIT_CODE=1; exit $EXIT_CODE " ,
18
18
"test-pack" : " lerna exec \" npm pack\" " ,
19
- "test-sauce" : " wct -s 'windows 10/microsoftedge@17' -s 'windows 10/microsoftedge@15' -s 'windows 8.1/internet explorer@11' -s 'macos 10.13/safari@12' -s 'macos 10.13/safari@11' -s 'os x 10.11/safari@10' -s 'os x 10.11/safari@9' -s 'Linux/chrome@41' && npx lerna run test-sauce --concurrency 1 --stream --no-bail"
19
+ "test-sauce" : " EXIT_CODE=0; wct -s 'windows 10/microsoftedge@17' -s 'windows 10/microsoftedge@15' -s 'windows 8.1/internet explorer@11' -s 'macos 10.13/safari@12' -s 'macos 10.13/safari@11' -s 'os x 10.11/safari@10' -s 'os x 10.11/safari@9' -s 'Linux/chrome@41' || EXIT_CODE=1; npx lerna run test-sauce --concurrency 1 --stream --no-bail || EXIT_CODE=1; exit $EXIT_CODE "
20
20
},
21
21
"devDependencies" : {
22
22
"@gulp-sourcemaps/sources-content" : " ^1.0.0" ,
Original file line number Diff line number Diff line change 1195
1195
} ) ;
1196
1196
1197
1197
test ( 'composedPath of events from non-Node subclasses works' , function ( done ) {
1198
- this . skip ( ) ;
1199
-
1200
1198
const xhr = new XMLHttpRequest ( ) ;
1201
1199
xhr . open ( 'GET' , window . location . href ) ;
1202
1200
xhr . addEventListener ( 'load' , ( e ) => {
1632
1630
} ) ;
1633
1631
1634
1632
test ( 'focus currentTarget is valid when unwrapped in noPatch' , function ( ) {
1635
- this . skip ( ) ;
1636
-
1637
1633
customElements . define (
1638
1634
'unpatched-focus' ,
1639
1635
class extends HTMLElement {
You can’t perform that action at this time.
0 commit comments