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 1ab2d04 commit 8b38ba4Copy full SHA for 8b38ba4
.github/workflows/ci.yaml
@@ -166,6 +166,6 @@ jobs:
166
- uses: microsoft/playwright-github-action@v1
167
- name: Install dependencies and run tests
168
run: |
169
- node code-server-* &
+ node code-server*-linux-amd64 &
170
yarn test
171
pkill node
test/e2e.test.ts
@@ -16,6 +16,7 @@ afterEach(async () => {
16
})
17
18
it("should work", async () => {
19
- await page.goto("https://www.example.com/")
20
- expect(await page.title()).toBe("Example Domain")
+ await page.goto("http://localhost:8080")
+ // It should send us to the login page
21
+ expect(await page.title()).toBe("code-server login")
22
0 commit comments