| 123456789101112131415 |
- // kilocode_change - new file
- import { setupTestEnvironment } from "../helpers"
- import { test, expect, type TestFixtures } from "./playwright-base-test"
- test.describe("Sanity Tests", () => {
- test("should launch VS Code with extension installed", async ({ workbox: page }: TestFixtures) => {
- await expect(page.locator(".monaco-workbench")).toBeVisible()
- console.log("✅ VS Code launched successfully")
- await expect(page.locator(".activitybar")).toBeVisible()
- console.log("✅ Activity bar visible")
- await setupTestEnvironment(page)
- })
- })
|