add session tests

This commit is contained in:
Richard Harris
2019-02-02 15:42:35 -05:00
parent 7fefc59929
commit 11d3da3aed
12 changed files with 46 additions and 14 deletions

View File

@@ -2,11 +2,6 @@ import * as sapper from '@sapper/app';
window.start = () => sapper.start({
target: document.querySelector('#sapper')
}).catch(err => {
console.error(`OH NO! ${err.message}`);
throw err;
}).then(() => {
console.log(`STARTED`);
});
window.prefetchRoutes = () => sapper.prefetchRoutes();