semicolon added

This commit is contained in:
svetlagasheva 2020-02-19 16:03:35 +02:00
parent 432814fb50
commit b664e6bd1e

View file

@ -121,7 +121,7 @@ describe('routesRegexp', () => {
it('match /library/', async () => {
expect(Array.from('/library/'.match(routesRegexp.library.regexp)))
.toEqual(['/library/', '', undefined]);
})
});
it('match /library//', async () => {
expect(Array.from('/library//'.match(routesRegexp.library.regexp)))
@ -131,7 +131,7 @@ describe('routesRegexp', () => {
it('match /library/1', async () => {
expect(Array.from('/library/1'.match(routesRegexp.library.regexp)))
.toEqual(['/library/1', '1', undefined]);
})
});
it('match /library/1/', async () => {
expect(Array.from('/library/1/'.match(routesRegexp.library.regexp)))