Skip to content

Commit

Permalink
fix: chrome version number
Browse files Browse the repository at this point in the history
  • Loading branch information
sf-v committed Apr 7, 2022
1 parent f6d6f13 commit c84c90a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/@best/runner-headless/src/headless.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ export default class HeadlessBrowser {
static async getSpecs(): Promise<BrowserSpec[]> {
// TODO: Create pupeteer test so we fail when upgrading
return [
{ name: 'chrome.headless', version: '99' },
{ name: 'chrome', version: '99' }
{ name: 'chrome.headless', version: '100' },
{ name: 'chrome', version: '100' }
];
}
}
2 changes: 1 addition & 1 deletion packages/best-benchmarks/best.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
module.exports = {
projectName: 'best-benchmark',
metrics: ['script', 'aggregate', 'paint', 'layout'],
specs: { name: 'chrome.headless', version: 99 },
specs: { name: 'chrome.headless', version: 100 },
runners: [
{
runner: "@best/runner-headless",
Expand Down
2 changes: 1 addition & 1 deletion packages/lwc-example/best.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
}],
['rollup-plugin-replace', { 'process.env.NODE_ENV': JSON.stringify('production') }]
],
specs: { name: 'chrome.headless', version: 99 },
specs: { name: 'chrome.headless', version: 100 },
runners: [
{
runner: "@best/runner-headless",
Expand Down

0 comments on commit c84c90a

Please sign in to comment.