1
0
mirror of https://github.com/SillyTavern/SillyTavern.git synced 2025-03-07 05:08:01 +01:00

11 lines
340 B
JavaScript
Raw Normal View History

describe('sample', () => {
beforeAll(async () => {
await page.goto(global.ST_URL);
await page.waitForFunction('document.getElementById("preloader") === null', { timeout: 0 });
});
it('should be titled "SillyTavern"', async () => {
await expect(page.title()).resolves.toMatch('SillyTavern');
});
});