Rebaseline tests (#568)

This commit is contained in:
Will Chen
2025-07-03 22:42:40 -07:00
committed by GitHub
parent 77e39874ad
commit a9575abc01
12 changed files with 20 additions and 20 deletions

View File

@@ -205,11 +205,11 @@ export class PageObject {
async setUp({
autoApprove = false,
nativeGit = false,
disableAutoFixProblems = false,
enableAutoFixProblems = false,
}: {
autoApprove?: boolean;
nativeGit?: boolean;
disableAutoFixProblems?: boolean;
enableAutoFixProblems?: boolean;
} = {}) {
await this.baseSetup();
await this.goToSettingsTab();
@@ -219,7 +219,7 @@ export class PageObject {
if (nativeGit) {
await this.toggleNativeGit();
}
if (disableAutoFixProblems) {
if (enableAutoFixProblems) {
await this.toggleAutoFixProblems();
}
await this.setUpTestProvider();