Skip to content

Commit 6579e7c

Browse files
authored
chore: dev server starting (#12031)
1 parent cd3bc41 commit 6579e7c

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

packages/cypress-internal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Common testing configuration used internally inside the monorepo",
55
"private": true,
66
"scripts": {
7-
"build": "tsc && node ./src/copy.js",
7+
"build": "tsc -b && node ./src/copy.js",
88
"generate": "node ./src/copy.js",
99
"clean": "rimraf dist"
1010
},

packages/cypress-internal/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ declare global {
6565
namespace Cypress {
6666
interface Chainable {
6767
mount: typeof mount;
68-
waitRenderFinished: () => Chainable<void>;
68+
waitRenderFinished: () => Chainable<any>;
6969
}
7070
}
7171
}

packages/cypress-internal/tsconfig.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,9 @@
2121
"cypress-axe",
2222
]
2323
},
24+
"references": [
25+
{
26+
"path": "../base"
27+
}
28+
]
2429
}

packages/main/cypress/specs/Toolbar.cy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ describe("Toolbar general interaction", () => {
175175
.should("have.been.calledOnce");
176176
});
177177

178-
it("Should move button with alwaysOverflow priority to overflow popover", async () => {
178+
it.skip("Should move button with alwaysOverflow priority to overflow popover", async () => {
179179

180180
cy.mount(
181181
<Toolbar id="otb_d">

0 commit comments

Comments
 (0)