Sha256: b965e6d7eb960e145635fb072209eabcb55f84581d01e199bb65ba3dc5c8a642
Contents?: true
Size: 928 Bytes
Versions: 1
Compression:
Stored size: 928 Bytes
Contents
import { run } from '@ember/runloop'; /** Loads a route, sets up any controllers, and renders any templates associated with the route as though a real user had triggered the route change while using your app. Example: ```javascript visit('posts/index').then(function() { // assert something }); ``` @method visit @param {String} url the name of the route @return {RSVP.Promise<undefined>} @public */ export default function visit(app, url) { let router = app.__container__.lookup('router:main'); let shouldHandleURL = false; app.boot().then(() => { router.location.setURL(url); if (shouldHandleURL) { run(app.__deprecatedInstance__, 'handleURL', url); } }); if (app._readinessDeferrals > 0) { router.initialURL = url; run(app, 'advanceReadiness'); delete router.initialURL; } else { shouldHandleURL = true; } return app.testHelpers.wait(); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
discourse-ember-source-3.6.0.0 | dist/es/ember-testing/lib/helpers/visit.js |