File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed
packages/browser/test/package Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 131
131
132
132
"skipFiles" : [
133
133
" <node_internals>/**" ,
134
- // this prevents us from landing in a neverending cycle of TS async-polyfill functions as we're stepping through
135
- // our code
136
- " ${workspaceFolder}/node_modules/tslib/**/*"
137
134
],
138
135
"sourceMaps" : true ,
139
136
// this controls which files are sourcemapped
Original file line number Diff line number Diff line change @@ -52,11 +52,6 @@ function runTests() {
52
52
53
53
const myLibrary = fs . readFileSync ( bundlePath , { encoding : 'utf-8' } ) ;
54
54
55
- if ( myLibrary . indexOf ( 'tslib_1__default' ) !== - 1 ) {
56
- console . log ( '"tslib_1__default" reappeared...' ) ;
57
- process . exit ( 1 ) ;
58
- }
59
-
60
55
const scriptEl = window . document . createElement ( 'script' ) ;
61
56
scriptEl . textContent = myLibrary ;
62
57
window . document . body . appendChild ( scriptEl ) ;
You can’t perform that action at this time.
0 commit comments