mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
semicolon added
This commit is contained in:
parent
432814fb50
commit
b664e6bd1e
1 changed files with 2 additions and 2 deletions
|
|
@ -121,7 +121,7 @@ describe('routesRegexp', () => {
|
||||||
it('match /library/', async () => {
|
it('match /library/', async () => {
|
||||||
expect(Array.from('/library/'.match(routesRegexp.library.regexp)))
|
expect(Array.from('/library/'.match(routesRegexp.library.regexp)))
|
||||||
.toEqual(['/library/', '', undefined]);
|
.toEqual(['/library/', '', undefined]);
|
||||||
})
|
});
|
||||||
|
|
||||||
it('match /library//', async () => {
|
it('match /library//', async () => {
|
||||||
expect(Array.from('/library//'.match(routesRegexp.library.regexp)))
|
expect(Array.from('/library//'.match(routesRegexp.library.regexp)))
|
||||||
|
|
@ -131,7 +131,7 @@ describe('routesRegexp', () => {
|
||||||
it('match /library/1', async () => {
|
it('match /library/1', async () => {
|
||||||
expect(Array.from('/library/1'.match(routesRegexp.library.regexp)))
|
expect(Array.from('/library/1'.match(routesRegexp.library.regexp)))
|
||||||
.toEqual(['/library/1', '1', undefined]);
|
.toEqual(['/library/1', '1', undefined]);
|
||||||
})
|
});
|
||||||
|
|
||||||
it('match /library/1/', async () => {
|
it('match /library/1/', async () => {
|
||||||
expect(Array.from('/library/1/'.match(routesRegexp.library.regexp)))
|
expect(Array.from('/library/1/'.match(routesRegexp.library.regexp)))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue