-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(config): ignore entry options (#479)
karma-webpack will no longer crash when an entry option is set in webpack config, instead a warning will be thrown and the property will be ignored for the time being. Fixes N/A
- Loading branch information
Showing
3 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
test/integration/scenarios/basic-setup/custom-entry-path.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* eslint-disable prettier/prettier */ | ||
|
||
import karmaChromeLauncher from 'karma-chrome-launcher'; | ||
import karmaMocha from 'karma-mocha'; | ||
import karmaChai from 'karma-chai'; | ||
|
||
import Scenario from '../../utils/scenario'; | ||
|
||
process.env.CHROME_BIN = require('puppeteer').executablePath(); | ||
|
||
const path = require('path'); | ||
|
||
const karmaWebpack = require('../../../../lib/index'); | ||
|
||
// The karma server integration tests take longer than the jest 5 sec default, | ||
// we will give them 30 seconds to complete. | ||
const KARMA_SERVER_TIMEOUT = 30 * 1000; | ||
|
||
describe('A basic karma-webpack setup', () => { | ||
let scenario; | ||
|
||
const TEST_PATH = path.resolve(__dirname, './index.scenario.js'); | ||
|
||
const config = { | ||
frameworks: ['mocha', 'chai', 'webpack'], | ||
files: [{ pattern: TEST_PATH }], | ||
preprocessors: { [TEST_PATH]: ['webpack'] }, | ||
webpack: { | ||
devtool: false, | ||
entry: './test.js', | ||
}, | ||
browsers: ['ChromeHeadless'], | ||
// Explicitly turn off reporters so the simulated test results are not confused with the actual results. | ||
reporters: [], | ||
plugins: [karmaWebpack, karmaChromeLauncher, karmaMocha, karmaChai], | ||
port: 2389, | ||
logLevel: 'ERROR', | ||
singleRun: true | ||
}; | ||
|
||
beforeAll((done) => { | ||
Scenario.run(config) | ||
.then((res) => { | ||
scenario = res; | ||
}) | ||
.catch((err) => console.error('Integration Scenario Failed: ', err)) | ||
.finally(() => done()); | ||
}, KARMA_SERVER_TIMEOUT); | ||
|
||
// karma-webpack should ignore the entry option and throw a warning. | ||
|
||
it('should have an exit code of 1 because it contains a failing test', () => { | ||
expect(scenario.exitCode).toBe(1); | ||
}) | ||
|
||
it('should have three successful test runs', () => { | ||
expect(scenario.success).toBe(3); | ||
}); | ||
|
||
it('should have one failed test run', () => { | ||
expect(scenario.failed).toBe(1); | ||
}); | ||
|
||
it('should complete with no errors', () => { | ||
expect(scenario.error).toBe(false); | ||
}); | ||
|
||
}); |