Skip to content

Commit 8dc74b3

Browse files
committed
fix(backport): resolve release CI conflicts
1 parent 66e9547 commit 8dc74b3

5 files changed

Lines changed: 0 additions & 31 deletions

File tree

e2e/lib/playwright/mock-factory.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,6 @@ export async function applyStandardMocks(page: Page): Promise<void> {
6262
await applyStorageConfig(page);
6363
await routeMockAgents(page);
6464
await routeAppConfig(page);
65-
<<<<<<< HEAD
66-
await suppressWhatsNew(page);
67-
}
68-
69-
=======
7065
// Keep this explicit even though the shared suite fixture also installs the
7166
// route: callers use applyStandardMocks for extra pages/contexts that are
7267
// created outside the built-in Playwright `page` fixture.
@@ -114,7 +109,6 @@ export async function routeSignedOutVelaStatus(page: Page): Promise<void> {
114109
});
115110
}
116111

117-
>>>>>>> 886bcc4db (feat(web): streamline onboarding model source flow (#6475))
118112
/** Keep unrelated release announcements from covering the surface under test. */
119113
export async function suppressWhatsNew(page: Page): Promise<void> {
120114
await page.route('**/api/whats-new', async (route) => {

e2e/tests/scripts/scopes.test.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -947,18 +947,7 @@ test("runtime-definition shadow fails closed for mixed, unknown, empty, and unre
947947
assert.equal(decision.mode, "full-fallback", files.join(", "));
948948
assert.deepEqual(
949949
decision.matrix.map((entry) => entry.name),
950-
<<<<<<< HEAD
951950
["entry-settings", "project-workspace", "project-collab", "project-runtime", "workspace-restoration"],
952-
=======
953-
[
954-
"entry-settings",
955-
"project-workspace",
956-
"project-workspace-editor",
957-
"project-collab",
958-
"project-runtime",
959-
"workspace-restoration",
960-
],
961-
>>>>>>> 886bcc4db (feat(web): streamline onboarding model source flow (#6475))
962951
);
963952
}
964953
assert.equal(evaluateUiP0Shadow([], false).reason, "files-unresolved");

e2e/ui/api-empty-response.test.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import { expect, test } from '@/playwright/suite';
2-
<<<<<<< HEAD
3-
import { fulfillAgentsRoute, routeSuccessfulRuns } from '@/playwright/mock-factory';
4-
=======
52
import {
63
fulfillAgentsRoute,
74
routeSuccessfulRuns,
85
} from '@/playwright/mock-factory';
96
import { mockAmrPersonalWorkspace } from '@/playwright/amr';
10-
>>>>>>> 886bcc4db (feat(web): streamline onboarding model source flow (#6475))
117
import { openNewProjectModal as openNewProjectModalFromProjects } from '@/playwright/rail';
128
import type { Page } from '@playwright/test';
139
import { T } from '@/timeouts';
@@ -17,8 +13,6 @@ const STORAGE_KEY = 'open-design:config';
1713
test.describe.configure({ timeout: T.xlong });
1814

1915
test.beforeEach(async ({ page }) => {
20-
<<<<<<< HEAD
21-
=======
2216
await page.route('**/api/integrations/vela/status*', async (route) => {
2317
await route.fulfill({
2418
json: {
@@ -30,7 +24,6 @@ test.beforeEach(async ({ page }) => {
3024
});
3125
});
3226
await mockAmrPersonalWorkspace(page);
33-
>>>>>>> 886bcc4db (feat(web): streamline onboarding model source flow (#6475))
3427
await page.addInitScript((key) => {
3528
window.localStorage.setItem(
3629
key,

e2e/ui/app-restoration.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,11 @@ import type { UiScenario } from '@/playwright/resources';
1414
import { T } from '@/timeouts';
1515
import { expectStableCount } from '../lib/playwright/assertions.js';
1616
import {
17-
<<<<<<< HEAD
18-
=======
1917
AMR_PERSONAL_WORKSPACE_HEADERS,
2018
mockAmrPersonalWorkspace,
2119
} from '@/playwright/amr';
2220
import {
2321
applyStandardMocks,
24-
>>>>>>> 886bcc4db (feat(web): streamline onboarding model source flow (#6475))
2522
failedRunEventBody,
2623
routeMockAgents,
2724
routeRunSequence,

scripts/lib/guard/scope.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,7 @@ function sameValues(actual: readonly string[], expected: readonly string[]): boo
4040
export function uiP0ShadowContractErrors(): string[] {
4141
const errors: string[] = [];
4242
if (!sameValues(matrixNames(uiP0CiMatrix), fullMatrixNames)) {
43-
<<<<<<< HEAD
4443
errors.push("the applied UI P0 matrix is no longer the guarded full five-domain matrix");
45-
=======
46-
errors.push("the applied UI P0 matrix is no longer the guarded full six-domain matrix");
47-
>>>>>>> 886bcc4db (feat(web): streamline onboarding model source flow (#6475))
4844
}
4945

5046
const sourceSample = `${DAEMON_RUNTIME_DEFINITION_PREFIXES[0]}example.ts`;

0 commit comments

Comments
 (0)