Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
b6626be8
Commit
b6626be8
authored
Feb 13, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
default router config for pw
parent
aecf6602
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
index.ts
playwright/index.ts
+2
-1
No files found.
playwright/index.ts
View file @
b6626be8
import
'
./fonts.css
'
;
import
'
./fonts.css
'
;
import
{
beforeMount
}
from
'
@playwright/experimental-ct-react/hooks
'
;
import
{
beforeMount
}
from
'
@playwright/experimental-ct-react/hooks
'
;
import
_defaultsDeep
from
'
lodash/defaultsDeep
'
;
import
MockDate
from
'
mockdate
'
;
import
MockDate
from
'
mockdate
'
;
import
*
as
router
from
'
next/router
'
;
import
*
as
router
from
'
next/router
'
;
...
@@ -12,7 +13,7 @@ beforeMount(async({ hooksConfig }) => {
...
@@ -12,7 +13,7 @@ beforeMount(async({ hooksConfig }) => {
// Before mount, redefine useRouter to return mock value from test.
// Before mount, redefine useRouter to return mock value from test.
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore: I really want to redefine this property :)
// @ts-ignore: I really want to redefine this property :)
router
.
useRouter
=
()
=>
hooksConfig
?.
router
||
NEXT_ROUTER_MOCK
;
router
.
useRouter
=
()
=>
_defaultsDeep
(
hooksConfig
?.
router
,
NEXT_ROUTER_MOCK
)
;
// set current date
// set current date
MockDate
.
set
(
'
2022-11-11T12:00:00Z
'
);
MockDate
.
set
(
'
2022-11-11T12:00:00Z
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment