Skip to content

Commit

Permalink
Merge pull request #978 from kulshekhar/fix-updates
Browse files Browse the repository at this point in the history
Fix dependencies
  • Loading branch information
kulshekhar committed Feb 16, 2019
2 parents 81f3936 + 9ff4f88 commit fb53685
Show file tree
Hide file tree
Showing 4 changed files with 750 additions and 563 deletions.
4 changes: 3 additions & 1 deletion e2e/__helpers__/test-case/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,9 @@ export function prepareTest(name: string, template: string, options: RunTestOpti

// link the node_modules dir if the template has one
if (existsSync(tmplModulesDir)) {
symlinkSync(tmplModulesDir, caseModulesDir)
// It's important to mark this symlink as 'dir' or tests fail
// with permission issues on windows.
symlinkSync(tmplModulesDir, caseModulesDir, 'dir')
}

// copy files from the template to the case dir
Expand Down
Loading

0 comments on commit fb53685

Please sign in to comment.