Skip to content

Commit

Permalink
feat(integration-test-runner): Add Cypress
Browse files Browse the repository at this point in the history
Fix PR comment
Add webpack and ts-loader as dev dep for typescript compiling
This is needed for cli bundler + TS combination that does not have
webpack
  • Loading branch information
michaelw85 committed Feb 11, 2019
1 parent c9597a0 commit f2eb6c5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ module.exports = function(project) {

if (isUsingTypescript) {
project.addToDevDependencies('@cypress/webpack-preprocessor');
project.addToDevDependencies('webpack');
project.addToDevDependencies('ts-loader');
}

const testDirResources = [
Expand Down

0 comments on commit f2eb6c5

Please sign in to comment.