remove demo test

This commit is contained in:
Simon Knott 2024-09-14 12:18:09 +02:00
parent 23a0a53e1b
commit c0c036b480
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -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)
});