Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
37880ac
migrate `hosts` tests
minnakt Apr 23, 2026
815cadd
migrate `version` and `spawn` tests
minnakt Apr 23, 2026
88581ed
clean up a bit
minnakt Apr 23, 2026
af0ee27
migrate `preferences` tests
minnakt Apr 23, 2026
73c71a9
migrate `distroSettings` tests
minnakt Apr 23, 2026
85b4927
fix: mistake
minnakt Apr 23, 2026
c4cf02f
migrate `adminSettings` tests
minnakt Apr 27, 2026
6f106c3
migrate `projectSettings` tests
minnakt Apr 27, 2026
c9d3fe2
cleanup: no `force`
minnakt Apr 27, 2026
670d617
cleanup: weird usage of locators
minnakt Apr 27, 2026
9503e75
fix failing tests
minnakt Apr 27, 2026
0b09fae
improvement: `data-cy` for banner
minnakt Apr 27, 2026
cf84570
refactor: clicking checkboxes and radios
minnakt Apr 27, 2026
45d75c1
fix: failing tests due to refactor
minnakt Apr 27, 2026
b6ac158
fix: failing tests
minnakt Apr 27, 2026
b2ba957
fix: unit tests
minnakt Apr 27, 2026
fd010b2
fix: reduce flakiness
minnakt Apr 28, 2026
39081c9
Merge branch 'main' into DEVPROD-31460_migrate_remaining
minnakt Apr 28, 2026
ee7310c
fix: merge conflicts
minnakt Apr 28, 2026
a506103
fix: reduce flakiness
minnakt Apr 28, 2026
fa90c31
fix: attempt to resolve loading issue
minnakt Apr 28, 2026
1d07e79
Merge branch 'main' into DEVPROD-31460_migrate_remaining
minnakt Apr 28, 2026
86b6c18
fix: merge conflicts and probably break a million things
minnakt Apr 28, 2026
80fec80
fix: all of the typos
minnakt Apr 28, 2026
8796b21
fix: clean up workarounds
minnakt Apr 28, 2026
514e7f0
fix: clean up helpers
minnakt Apr 28, 2026
21cb2b2
fix: unnecessary `data-cy`
minnakt Apr 28, 2026
1802c42
fix: missed
minnakt Apr 28, 2026
5c7753e
fix: better selector
minnakt Apr 28, 2026
7d5a1c2
delete old changes to ease merge conflicts
minnakt May 1, 2026
a19face
Merge branch 'main' into DEVPROD-31460_migrate_remaining
minnakt May 1, 2026
279ca47
fix: merge conflicts
minnakt May 1, 2026
ce6ab8e
fix: only leave fake test
minnakt May 1, 2026
48d4958
cleanup: `spawn` tests
minnakt May 1, 2026
1e55dce
cleanup: `version` tests
minnakt May 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .evergreen/scripts/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ const MARKDOWN_EXT = ".md";

const IGNORED_FILE_EXTENSIONS = new Set([MARKDOWN_EXT]);

const CYPRESS_PARALLEL_COUNT = 2;
const PLAYWRIGHT_PARALLEL_COUNT = 2;
const CYPRESS_PARALLEL_COUNT = 1;
const PLAYWRIGHT_PARALLEL_COUNT = 4;

export {
Tasks,
Expand Down
12 changes: 12 additions & 0 deletions apps/spruce/cypress/integration/dummy_test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
describe("Downstream Projects Tab", () => {
const DOWNSTREAM_ROUTE = `/version/5f74d99ab2373627c047c5e5/downstream-projects`;

beforeEach(() => {
cy.visit(DOWNSTREAM_ROUTE);
});

it("shows number of failed patches in the Downstream tab label", () => {
cy.dataCy("downstream-tab-badge").should("exist");
cy.dataCy("downstream-tab-badge").should("contain.text", "1");
});
});
69 changes: 0 additions & 69 deletions apps/spruce/cypress/integration/projectSettings/access.ts

This file was deleted.

This file was deleted.

This file was deleted.

46 changes: 0 additions & 46 deletions apps/spruce/cypress/integration/projectSettings/constants.ts

This file was deleted.

Loading
Loading