Skip to content

Commit 67c7661

Browse files
committed
πŸ‘¨β€πŸ”¬ Add test cases covering #93
Thanks to @zeearth
1 parent 887e833 commit 67c7661

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

β€Žtest/client/router.core.spec.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { _ } from 'meteor/underscore';
2-
import { check } from 'meteor/check';
32
import { GetSub } from './_helpers.js';
43
import { Meteor } from 'meteor/meteor';
54
import { Random } from 'meteor/random';
@@ -176,9 +175,9 @@ Tinytest.addAsync('Client - Router - define and go to route with UTF-8 fields',
176175
});
177176

178177
Tinytest.addAsync('Client - Router - parse params and query', (test, next) => {
179-
const rand = Random.id();
178+
const rand = Random.id();
180179
let rendered = 0;
181-
let params = {}
180+
let params = {};
182181

183182
FlowRouter.route('/' + rand + '/:foo', {
184183
action(_params) {

β€Žtest/common/router.path.spec.js

+24
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,30 @@ Tinytest.add('Common - Router - path - optional last param missing', function (t
9393
test.equal(path, expectedPath);
9494
});
9595

96+
Tinytest.add('Common - Router - path - both optional last param missing', function (test) {
97+
var pathDef = "/blog/:id?/:action?";
98+
var fields = {
99+
id: "6135cb32d14df059605901fd",
100+
action: ''
101+
};
102+
var expectedPath = "/blog/6135cb32d14df059605901fd";
103+
104+
var path = FlowRouter.path(pathDef, fields);
105+
test.equal(path, expectedPath);
106+
});
107+
108+
Tinytest.add('Common - Router - path - both optional last param exists', function (test) {
109+
var pathDef = "/blog/:id?/:action?";
110+
var fields = {
111+
id: "6135cb32d14df059605901fd",
112+
action: 'view'
113+
};
114+
var expectedPath = "/blog/6135cb32d14df059605901fd/view";
115+
116+
var path = FlowRouter.path(pathDef, fields);
117+
test.equal(path, expectedPath);
118+
});
119+
96120
Tinytest.add('Common - Router - path - optional last param exists', function (test) {
97121
var pathDef = "/blog/:blogId/some/:name?";
98122
var fields = {

0 commit comments

Comments
Β (0)