mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
import * as api from '../../../api';
|
|
|
|
describe('export-queue', function() {
|
|
this.timeout(10000);
|
|
|
|
// hooks
|
|
before('build app', () => api.build({ cwd: __dirname }));
|
|
|
|
// tests
|
|
it('exports a site with inconsistent load time', async () => {
|
|
await api.export({ cwd: __dirname });
|
|
});
|
|
});
|