diff options
author | Eylon Malin <eylon.malin@intl.att.com> | 2020-01-01 15:17:45 +0200 |
---|---|---|
committer | Eylon Malin <eylon.malin@intl.att.com> | 2020-01-01 15:17:45 +0200 |
commit | 109316a178910cca70db606a258fa1f5f9958c2a (patch) | |
tree | 4901fe9af64fe86fac822ee47201f6069e6b5f2d /vid-webpack-master/cypress | |
parent | b5df65390b7adf5c4d11a3bcf987242cff589a9d (diff) |
cypress test - adding option transpileOnly: true
See https://github.com/cypress-io/cypress/issues/2316#issuecomment-431725314
Issue-ID: VID-732
Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
Change-Id: I2aa21c1ef092b5caf5753402555e8e2eb19132b4
Diffstat (limited to 'vid-webpack-master/cypress')
-rw-r--r-- | vid-webpack-master/cypress/plugins/cy-ts-preprocessor.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vid-webpack-master/cypress/plugins/cy-ts-preprocessor.js b/vid-webpack-master/cypress/plugins/cy-ts-preprocessor.js index 7f0bba98c..3d56c2049 100644 --- a/vid-webpack-master/cypress/plugins/cy-ts-preprocessor.js +++ b/vid-webpack-master/cypress/plugins/cy-ts-preprocessor.js @@ -11,7 +11,10 @@ const webpackOptions = { exclude: [/node_modules/], use: [ { - loader: 'ts-loader' + loader: 'ts-loader', + options: { + transpileOnly: true + } } ] } |