sanity.test.ts 553 B

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