Simplify turbo pipelone (#7252)

pull/7256/head^2
Hariom Balhara 2023-02-21 22:18:01 +05:30 committed by GitHub
parent 7a9b40f218
commit 4a5404bf21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,5 @@
import { PlaywrightTestConfig, Frame, devices, expect } from "@playwright/test";
import type { PlaywrightTestConfig, Frame } from "@playwright/test";
import { devices, expect } from "@playwright/test";
import * as path from "path";
require("dotenv").config({ path: "../../../../../.env" });

View File

@ -1,6 +1,8 @@
import { expect, Page } from "@playwright/test";
import type { Page } from "@playwright/test";
import { expect } from "@playwright/test";
import { Fixtures, test } from "../fixtures/fixtures";
import type { Fixtures } from "../fixtures/fixtures";
import { test } from "../fixtures/fixtures";
import {
todo,
getEmbedIframe,

View File

@ -152,8 +152,7 @@
"dependsOn": [
"@calcom/prisma#db-seed",
"@calcom/web#build",
"@calcom/embed-core#build",
"@calcom/embed-react#build",
"^build",
"^embed-tests-update-snapshots:ci"
]
},