mirror of
https://github.com/wekan/wekan.git
synced 2026-01-01 23:28:49 +01:00
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
Router = FlowRouter.Router;
|
|
|
|
|
|
Tinytest.add('Client - import page.js', function (test) {
|
|
test.isTrue(!!Router.prototype._page);
|
|
test.isFalse(!!window.page);
|
|
});
|
|
|
|
|
|
Tinytest.add('Client - import query.js', function (test) {
|
|
test.isTrue(!!Router.prototype._qs);
|
|
});
|
|
|
|
|
|
Tinytest.add('Client - create FlowRouter', function (test) {
|
|
test.isTrue(!!FlowRouter);
|
|
});
|