Skip to content

Commit

Permalink
update karna.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
poonamyadav252 committed Nov 28, 2023
1 parent b9b0b17 commit 17fea32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if (process.env.SAUCE_USERNAME && process.env.SAUCE_ACCESS_KEY) {
sl_latest_safari: {
base: 'SauceLabs',
browserName: 'safari',
platform: 'macOS 11',
platform: 'macOS 12',
version: 'latest',
},
};
Expand Down Expand Up @@ -64,11 +64,11 @@ module.exports = (config) => {
},
files: [
{
pattern: 'node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js',
watched: false,
pattern: `test/*${config.grep || '*.test.js'}`,
type: 'module',
},
{
pattern: `${config.package || 'core'}/test/*${config.grep || '*.test.js'}`,
pattern: `addons/*/test/*${config.grep || '*.test.js'}`,
type: 'module',
},
],
Expand Down Expand Up @@ -115,7 +115,7 @@ module.exports = (config) => {

coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'text-summary'],
dir: path.join(__dirname, 'coverage', config.package),
dir: path.join(__dirname, 'coverage'),
combineBrowserReports: true,
skipFilesWithNoCoverage: true,
},
Expand Down

0 comments on commit 17fea32

Please sign in to comment.