[ci] format
This commit is contained in:
parent
6373508458
commit
1f148dbcfd
2 changed files with 43 additions and 43 deletions
|
@ -8,61 +8,61 @@ let fixture;
|
|||
const routes = [
|
||||
{
|
||||
url: '/',
|
||||
h1: 'index.astro'
|
||||
h1: 'index.astro',
|
||||
},
|
||||
{
|
||||
url: '/posts/post-1',
|
||||
h1: 'posts/[pid].astro',
|
||||
p: 'post-1'
|
||||
p: 'post-1',
|
||||
},
|
||||
{
|
||||
url: '/posts/post-2',
|
||||
h1: 'posts/[pid].astro',
|
||||
p: 'post-2'
|
||||
p: 'post-2',
|
||||
},
|
||||
{
|
||||
url: '/posts/1/2',
|
||||
h1: 'posts/[...slug].astro',
|
||||
p: '1/2'
|
||||
p: '1/2',
|
||||
},
|
||||
{
|
||||
url: '/de',
|
||||
h1: 'de/index.astro'
|
||||
h1: 'de/index.astro',
|
||||
},
|
||||
{
|
||||
url: '/de/',
|
||||
h1: 'de/index.astro'
|
||||
h1: 'de/index.astro',
|
||||
},
|
||||
{
|
||||
url: '/de/index.html',
|
||||
h1: 'de/index.astro'
|
||||
h1: 'de/index.astro',
|
||||
},
|
||||
{
|
||||
url: '/en',
|
||||
h1: '[lang]/index.astro',
|
||||
p: 'en'
|
||||
p: 'en',
|
||||
},
|
||||
{
|
||||
url: '/en/',
|
||||
h1: '[lang]/index.astro',
|
||||
p: 'en'
|
||||
p: 'en',
|
||||
},
|
||||
{
|
||||
url: '/en/index.html',
|
||||
h1: '[lang]/index.astro',
|
||||
p: 'en'
|
||||
p: 'en',
|
||||
},
|
||||
{
|
||||
url: '/de/1/2',
|
||||
h1: '[lang]/[...catchall].astro',
|
||||
p: 'de | 1/2'
|
||||
p: 'de | 1/2',
|
||||
},
|
||||
{
|
||||
url: '/en/1/2',
|
||||
h1: '[lang]/[...catchall].astro',
|
||||
p: 'en | 1/2'
|
||||
}
|
||||
]
|
||||
p: 'en | 1/2',
|
||||
},
|
||||
];
|
||||
|
||||
describe('Routing priority', () => {
|
||||
before(async () => {
|
||||
|
@ -119,7 +119,7 @@ describe('Routing priority', () => {
|
|||
const $ = cheerioLoad(html);
|
||||
|
||||
expect($('h1').text()).to.equal('[lang]/[...catchall].astro');
|
||||
expect($('p').text()).to.equal('de | 1/2')
|
||||
expect($('p').text()).to.equal('de | 1/2');
|
||||
});
|
||||
|
||||
it('matches /en/1/2 to [lang]/[...catchall].astro', async () => {
|
||||
|
@ -127,7 +127,7 @@ describe('Routing priority', () => {
|
|||
const $ = cheerioLoad(html);
|
||||
|
||||
expect($('h1').text()).to.equal('[lang]/[...catchall].astro');
|
||||
expect($('p').text()).to.equal('en | 1/2')
|
||||
expect($('p').text()).to.equal('en | 1/2');
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue