chore: move indexTest to kebab-case (#6860)

This commit is contained in:
Even Stensberg 2023-08-06 21:54:36 +02:00 committed by GitHub
parent 4287cd5413
commit 9942bbbc0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ module.exports = (config) => {
basePath: '', basePath: '',
frameworks: ['jasmine', 'webpack'], frameworks: ['jasmine', 'webpack'],
files: [ files: [
'indexTest.js', 'index-test.js',
// included means: should the files be included in the browser using <script> tag? // included means: should the files be included in the browser using <script> tag?
// We don't want them as a <script> because the shared worker source // We don't want them as a <script> because the shared worker source
// needs loaded remotely by the shared worker process. // needs loaded remotely by the shared worker process.
@ -102,7 +102,7 @@ module.exports = (config) => {
failFast: false failFast: false
}, },
preprocessors: { preprocessors: {
'indexTest.js': ['webpack', 'sourcemap'] 'index-test.js': ['webpack', 'sourcemap']
}, },
webpack: webpackConfig, webpack: webpackConfig,
webpackMiddleware: { webpackMiddleware: {