Skip to content

Commit 1fb6fa4

Browse files
feat(e2e): fix tsc check
Signed-off-by: Oleksandr Andriienko <oandriie@redhat.com>
1 parent a67ae92 commit 1fb6fa4

2 files changed

Lines changed: 13 additions & 8 deletions

File tree

workspaces/bulk-import/e2e-tests/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"lint:fix": "eslint . --fix",
1919
"prettier:check": "prettier --check .",
2020
"prettier:fix": "prettier --write .",
21-
"check": "tsc --noEmit && yarn lint:check && yarn prettier:check"
21+
"check": "tsc --noEmit && yarn lint:check && yarn prettier:check",
22+
"tsc:check": "tsc --noEmit"
2223
},
2324
"devDependencies": {
2425
"@eslint/js": "^9.39.2",

workspaces/bulk-import/e2e-tests/tests/fixtures.ts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ import { $ } from "rhdh-e2e-test-utils/utils";
99

1010
const BEFORE_ALL_TIMEOUT_MS = 30 * 60 * 1000; // 30 min for orchestrator + RHDH deploy
1111

12-
export const test = base.extend<{
13-
rhdhDeploymentWorker: RHDHDeployment;
14-
rhdh: RHDHDeployment;
15-
uiHelper: UIhelper;
16-
loginHelper: LoginHelper;
17-
baseURL: string;
18-
}>({
12+
export const test = base.extend<
13+
{
14+
rhdh: RHDHDeployment;
15+
uiHelper: UIhelper;
16+
loginHelper: LoginHelper;
17+
baseURL: string;
18+
},
19+
{
20+
rhdhDeploymentWorker: RHDHDeployment;
21+
}
22+
>({
1923
rhdhDeploymentWorker: [
2024
async ({}, use, workerInfo) => {
2125
const projectName = workerInfo.project.name;

0 commit comments

Comments
 (0)