Skip to content

Commit

Permalink
test(e2e): 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 22, 2017
1 parent c50c8f2 commit f8806ac
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
17 changes: 9 additions & 8 deletions test/e2e/module-types.feature
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,24 @@ Feature: ES Modules
As a person who wants to write great tests
I want to use different script types with Karma.

Scenario: Simple middleware
Scenario: Globbing modules, with both .js and .mjs extensions
Given a configuration with:
"""
files = [
{ pattern: 'modules/plus.js', esModule: false },
{ pattern: 'modules/minus.mjs', esModule: true },
'modules/test.js'
{ pattern: 'modules/**.js', type: 'module' },
{ pattern: 'modules/**.mjs', type: 'module' },
];
browsers = ['Firefox'];
browsers = ['Chrome'];
frameworks = ['mocha', 'chai'];
plugins = [
'karma-jasmine',
'karma-firefox-launcher'
'karma-mocha',
'karma-chai',
'karma-chrome-launcher'
];
"""
When I start Karma
Then it passes with:
"""
..
Firefox
Chrome
"""
4 changes: 2 additions & 2 deletions test/e2e/support/modules/__tests__/minus.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { minus } from '../minus.mjs'

describe('minus', function () {
it('should pass', function () {
expect(true).toBe(true)
expect(true).to.be.true
})

it('should work', function () {
expect(minus(3, 2)).toBe(1)
expect(minus(3, 2)).to.equal(1)
})
})
4 changes: 2 additions & 2 deletions test/e2e/support/modules/__tests__/plus.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { plus } from '../plus.js'

describe('plus', function () {
it('should pass', function () {
expect(true).toBe(true)
expect(true).to.be.true
})

it('should work', function () {
expect(plus(1, 2)).toBe(3)
expect(plus(1, 2)).to.equal(3)
})
})

0 comments on commit f8806ac

Please sign in to comment.