File tree 1 file changed +7
-3
lines changed
packages/kit/test/apps/options/test
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,15 @@ test.describe.configure({ mode: 'parallel' });
7
7
8
8
test . describe ( 'base path' , ( ) => {
9
9
test ( 'serves a useful 404 when visiting unprefixed path' , async ( { request } ) => {
10
- const response = await request . get ( '/slash/' , { headers : { Accept : 'text/html' } } ) ;
11
- expect ( response . status ( ) ) . toBe ( 404 ) ;
12
- expect ( await response . text ( ) ) . toBe (
10
+ const html = await request . get ( '/slash/' , { headers : { Accept : 'text/html' } } ) ;
11
+ expect ( html . status ( ) ) . toBe ( 404 ) ;
12
+ expect ( await html . text ( ) ) . toBe (
13
13
'Not found (did you mean <a href="/path-base/slash/">/path-base/slash/</a>?)'
14
14
) ;
15
+
16
+ const plain = await request . get ( '/slash/' ) ;
17
+ expect ( plain . status ( ) ) . toBe ( 404 ) ;
18
+ expect ( await plain . text ( ) ) . toBe ( 'Not found (did you mean /path-base/slash/?)' ) ;
15
19
} ) ;
16
20
17
21
test ( 'serves /' , async ( { page, javaScriptEnabled } ) => {
You can’t perform that action at this time.
0 commit comments