Skip to content

Commit 30c247a

Browse files
committed
#1653 and fix boxplot
1 parent 5bbe073 commit 30c247a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

webdriver-ts-results/src/components/BoxPlotTable/BoxPlotTableChart.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const BoxPlotTableChart = ({ traces }: Props) => {
5050
},
5151
options: {
5252
animation: false,
53+
maintainAspectRatio: false,
5354
scales: {
5455
x: {
5556
type: "category",

webdriver-ts/src/puppeteerAccess.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,12 @@ export async function startBrowser(benchmarkOptions: BenchmarkOptions): Promise<
109109
const window_width = width,
110110
window_height = height;
111111

112-
const args = [`--window-size=${window_width},${window_height}`, "--js-flags=--expose-gc", "--no-default-browser-check"];
112+
const args = [
113+
`--window-size=${window_width},${window_height}`,
114+
"--js-flags=--expose-gc",
115+
"--no-default-browser-check",
116+
"--disable-features=PrivacySandboxSettings4",
117+
];
113118
if (benchmarkOptions.headless) args.push("--headless=new");
114119
args.push("--enable-benchmarking");
115120

0 commit comments

Comments
 (0)