mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-18 05:25:08 +00:00
rename preloadRoutes to prefetchRoutes
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { init, preloadRoutes } from '../../../runtime.js';
|
||||
import { init, prefetchRoutes } from '../../../runtime.js';
|
||||
import { routes } from './manifest/client.js';
|
||||
|
||||
window.init = () => {
|
||||
return init(document.querySelector('#sapper'), routes);
|
||||
};
|
||||
|
||||
window.preloadRoutes = preloadRoutes;
|
||||
window.prefetchRoutes = prefetchRoutes;
|
||||
@@ -23,8 +23,8 @@ Nightmare.action('init', function(done) {
|
||||
this.evaluate_now(() => window.init(), done);
|
||||
});
|
||||
|
||||
Nightmare.action('preloadRoutes', function(done) {
|
||||
this.evaluate_now(() => window.preloadRoutes(), done);
|
||||
Nightmare.action('prefetchRoutes', function(done) {
|
||||
this.evaluate_now(() => window.prefetchRoutes(), done);
|
||||
});
|
||||
|
||||
function run(env) {
|
||||
@@ -159,7 +159,7 @@ function run(env) {
|
||||
});
|
||||
|
||||
it('navigates to a new page without reloading', () => {
|
||||
return capture(() => nightmare.goto(base).init().preloadRoutes())
|
||||
return capture(() => nightmare.goto(base).init().prefetchRoutes())
|
||||
.then(() => {
|
||||
return capture(() => nightmare.click('a[href="/about"]'));
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user