mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 19:25:10 +00:00
38 lines
887 B
TypeScript
38 lines
887 B
TypeScript
import * as assert from 'assert';
|
|
import { walk } from '../../utils';
|
|
import * as api from '../../../api';
|
|
|
|
describe('export', function() {
|
|
this.timeout(10000);
|
|
|
|
// hooks
|
|
before(async () => {
|
|
await api.build({ cwd: __dirname });
|
|
await api.export({ cwd: __dirname });
|
|
});
|
|
|
|
it('crawls a site', () => {
|
|
const files = walk(`${__dirname}/__sapper__/export`);
|
|
|
|
const client_assets = files.filter(file => file.startsWith('client/'));
|
|
const non_client_assets = files.filter(file => !file.startsWith('client/')).sort();
|
|
|
|
assert.ok(client_assets.length > 0);
|
|
|
|
assert.deepEqual(non_client_assets, [
|
|
'blog.json',
|
|
'blog/bar.json',
|
|
'blog/bar/index.html',
|
|
'blog/baz.json',
|
|
'blog/baz/index.html',
|
|
'blog/foo.json',
|
|
'blog/foo/index.html',
|
|
'blog/index.html',
|
|
'global.css',
|
|
'index.html',
|
|
'service-worker.js'
|
|
]);
|
|
});
|
|
|
|
// TODO test timeout, basepath
|
|
}); |