Load all saved place into memory

Fixes launching the app with a place URL directly, and will be useful
for search etc. later.
This commit is contained in:
2026-01-22 17:23:50 +07:00
parent 86b85e9a0b
commit 6e87ef3573
4 changed files with 88 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
import { module, test } from 'qunit';
import { setupTest } from 'marco/tests/helpers';
module('Unit | Route | place', function (hooks) {
setupTest(hooks);
test('it exists', function (assert) {
let route = this.owner.lookup('route:place');
assert.ok(route);
});
});