We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12595cf commit 3f76e12Copy full SHA for 3f76e12
test/unit/router-test.ts
@@ -22,7 +22,7 @@ test('Router > runs middleware before determining routing', async (t) => {
22
t.is(count, 2);
23
}
24
});
25
- let router = container.lookup('app:router');
+ let router = <Router>container.lookup('app:router');
26
router.use((req, res, next) => {
27
count += 1;
28
t.is(count, 1);
0 commit comments