|
1 |
| -Cypress.on('uncaught:exception', (err) => { |
2 |
| - if (err.message.includes('Minified React error')) { |
| 1 | +Cypress.on("uncaught:exception", err => { |
| 2 | + if (err.message.includes("Minified React error")) { |
3 | 3 | return false
|
4 | 4 | }
|
5 | 5 | })
|
6 | 6 |
|
7 |
| -describe('Sub-Router', () => { |
| 7 | +describe("Sub-Router", () => { |
8 | 8 | const routes = [
|
9 | 9 | {
|
10 | 10 | path: "/routes/sub-router",
|
11 | 11 | marker: "index",
|
12 |
| - label: "Index route" |
| 12 | + label: "Index route", |
13 | 13 | },
|
14 | 14 | {
|
15 | 15 | path: `/routes/sub-router/page/profile`,
|
@@ -51,39 +51,47 @@ describe('Sub-Router', () => {
|
51 | 51 | })
|
52 | 52 | })
|
53 | 53 |
|
54 |
| -describe('Paths', () => { |
| 54 | +describe("Paths", () => { |
55 | 55 | const routes = [
|
56 | 56 | {
|
57 |
| - name: 'client-only', |
58 |
| - param: 'dune', |
| 57 | + name: "client-only", |
| 58 | + param: "dune", |
59 | 59 | },
|
60 | 60 | {
|
61 |
| - name: 'client-only/wildcard', |
62 |
| - param: 'atreides/harkonnen', |
| 61 | + name: "client-only/wildcard", |
| 62 | + param: "atreides/harkonnen", |
63 | 63 | },
|
64 | 64 | {
|
65 |
| - name: 'client-only/named-wildcard', |
66 |
| - param: 'corinno/fenring', |
| 65 | + name: "client-only/named-wildcard", |
| 66 | + param: "corinno/fenring", |
67 | 67 | },
|
68 | 68 | ] as const
|
69 | 69 |
|
70 | 70 | for (const route of routes) {
|
71 | 71 | it(`should return "${route.name}" result`, () => {
|
72 |
| - cy.visit(`/routes/${route.name}${route.param ? `/${route.param}` : ''}`).waitForRouteChange() |
| 72 | + cy.visit( |
| 73 | + `/routes/${route.name}${route.param ? `/${route.param}` : ""}` |
| 74 | + ).waitForRouteChange() |
73 | 75 | cy.get("[data-testid=title]").should("have.text", route.name)
|
74 | 76 | cy.get("[data-testid=params]").should("have.text", route.param)
|
75 | 77 | })
|
76 | 78 | }
|
77 | 79 | })
|
78 | 80 |
|
79 |
| -describe('Prioritize', () => { |
80 |
| - it('should prioritize static page over matchPath page with wildcard', () => { |
81 |
| - cy.visit('/routes/client-only/prioritize').waitForRouteChange() |
82 |
| - cy.get("[data-testid=title]").should("have.text", "client-only/prioritize static") |
| 81 | +describe("Prioritize", () => { |
| 82 | + it("should prioritize static page over matchPath page with wildcard", () => { |
| 83 | + cy.visit("/routes/client-only/prioritize").waitForRouteChange() |
| 84 | + cy.get("[data-testid=title]").should( |
| 85 | + "have.text", |
| 86 | + "client-only/prioritize static" |
| 87 | + ) |
83 | 88 | })
|
84 |
| - it('should return result for wildcard on nested prioritized path', () => { |
85 |
| - cy.visit('/routes/client-only/prioritize/nested').waitForRouteChange() |
86 |
| - cy.get("[data-testid=title]").should("have.text", "client-only/prioritize matchpath") |
| 89 | + it("should return result for wildcard on nested prioritized path", () => { |
| 90 | + cy.visit("/routes/client-only/prioritize/nested").waitForRouteChange() |
| 91 | + cy.get("[data-testid=title]").should( |
| 92 | + "have.text", |
| 93 | + "client-only/prioritize matchpath" |
| 94 | + ) |
87 | 95 | cy.get("[data-testid=params]").should("have.text", "nested")
|
88 | 96 | })
|
89 | 97 | })
|
0 commit comments