fix(core): update
This commit is contained in:
32
test/test.browser.ts
Normal file
32
test/test.browser.ts
Normal file
@ -0,0 +1,32 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as smartrouter from '../ts/index';
|
||||
|
||||
let testrouter: smartrouter.SmartRouter;
|
||||
|
||||
tap.test('first test', async () => {
|
||||
testrouter = new smartrouter.SmartRouter({});
|
||||
expect(testrouter).to.be.instanceOf(smartrouter.SmartRouter);
|
||||
});
|
||||
|
||||
tap.test('should handle a route change', async (tools) => {
|
||||
const done = tools.defer();
|
||||
testrouter.on('/myawesomeroute/:any', async (routeInfoArg) => {
|
||||
expect(routeInfoArg.params.any).to.equal('hello');
|
||||
done.resolve();
|
||||
});
|
||||
testrouter.pushUrl('/myawesomeroute/hello');
|
||||
await done.promise;
|
||||
});
|
||||
|
||||
tap.test('should handle a route change', async (tools) => {
|
||||
const done = tools.defer();
|
||||
testrouter.on('/myawesomeroute2/:wow', async (routeInfoArg) => {
|
||||
expect(routeInfoArg.params.wow).to.equal('hello2');
|
||||
done.resolve();
|
||||
});
|
||||
testrouter.pushUrl('/myawesomeroute2/hello2');
|
||||
await done.promise;
|
||||
expect(window.location.href).to.equal('http://localhost:3007/myawesomeroute2/hello2');
|
||||
});
|
||||
|
||||
tap.start();
|
@ -1,8 +0,0 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as smartrouter from '../ts/index';
|
||||
|
||||
tap.test('first test', async () => {
|
||||
const router = new smartrouter.SmartRouter({});
|
||||
});
|
||||
|
||||
tap.start();
|
Reference in New Issue
Block a user