Skip to content

Commit

Permalink
fix(tests): module-types
Browse files Browse the repository at this point in the history
`esModule: true` is now `type: 'module'`.  Test updated to reflect that.
  • Loading branch information
appsforartists committed Nov 21, 2017
1 parent c50c8f2 commit c2f88a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/module-types.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Feature: ES Modules
Given a configuration with:
"""
files = [
{ pattern: 'modules/plus.js', esModule: false },
{ pattern: 'modules/minus.mjs', esModule: true },
{ pattern: 'modules/plus.js', type: 'module' },
{ pattern: 'modules/minus.mjs', type: 'module' },
'modules/test.js'
];
browsers = ['Firefox'];
Expand Down

0 comments on commit c2f88a9

Please sign in to comment.