From c0c036b4807663b3e63ab2026426e77553593ac9 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Sat, 14 Sep 2024 12:18:09 +0200 Subject: [PATCH] remove demo test --- examples/github-api/tests/demo.spec.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 examples/github-api/tests/demo.spec.ts diff --git a/examples/github-api/tests/demo.spec.ts b/examples/github-api/tests/demo.spec.ts deleted file mode 100644 index 3449819fab..0000000000 --- a/examples/github-api/tests/demo.spec.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { test, expect } from "@playwright/test"; - -test('should get posts', async ({ request }) => { - const posts = await request.get(`https://jsonplaceholder.typicode.com/posts/1`); - expect(posts.ok()).toBeTruthy(); - expect(await posts.text()).toHaveLength(10) -}); \ No newline at end of file