We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2686d88 commit 05c460fCopy full SHA for 05c460f
test/e2e/workbench.test.ts renamed to test/e2e/codeServer.test.ts
@@ -2,7 +2,7 @@ import { test, expect } from "@playwright/test"
2
import { STORAGE } from "../utils/constants"
3
import { CodeServer } from "./models/CodeServer"
4
5
-test.describe("Workbench", () => {
+test.describe("CodeServer", () => {
6
// Create a new context with the saved storage state
7
// so we don't have to logged in
8
const options: any = {}
@@ -30,4 +30,9 @@ test.describe("Workbench", () => {
30
// which is the default folder that opens
31
expect(await page.isVisible("text=workspaceStorage")).toBe(true)
32
})
33
+
34
+ test("should show the Integrated Terminal", options, async ({ page }) => {
35
+ await codeServer.viewTerminal()
36
+ expect(await page.isVisible("#terminal")).toBe(true)
37
+ })
38
0 commit comments