Blame Raw
· · · 12 lines (395 B)
0 contributors
1import { test, expect } from '@playwright/test';
2
3test.describe('sample', () => {
4 test.beforeEach(async({ page }) => {
5 await page.goto('/');
6 await page.waitForFunction('document.getElementById("preloader") === null', { timeout: 0 });
7 });
8
9 test('should be titled "SillyTavern"', async ({ page }) => {
10 await expect(page).toHaveTitle('SillyTavern');
11 });
12});