mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Tests (#2499)
* Setup jest framework for unit tests * Move tests to a separate package * Remove test script
This commit is contained in:
10
tests/sample.test.js
Normal file
10
tests/sample.test.js
Normal file
@@ -0,0 +1,10 @@
|
||||
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');
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user