forked from opentiny/tiny-vue
chore: [date-picker] config playwright timezoneId (#1253)
This commit is contained in:
parent
1e0a83e6f0
commit
48a0df2980
|
@ -6,9 +6,6 @@ concurrency:
|
|||
group: ${{ github.workflow }}-${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
TZ: Asia/Shanghai
|
||||
|
||||
jobs:
|
||||
dispatch-test-all:
|
||||
name: Dispatch All Test
|
||||
|
|
|
@ -13,9 +13,6 @@ concurrency:
|
|||
group: ${{ github.workflow }}-${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
TZ: Asia/Shanghai
|
||||
|
||||
jobs:
|
||||
dispatch-tests:
|
||||
name: Dispatch Tests
|
||||
|
|
|
@ -8,9 +8,6 @@ concurrency:
|
|||
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
TZ: Asia/Shanghai
|
||||
|
||||
jobs:
|
||||
parse-components:
|
||||
name: Parse Affected Components
|
||||
|
|
|
@ -40,7 +40,10 @@ const Config = ({ testDir, baseURL, storageState }) => ({
|
|||
headless: !!process.env.CI,
|
||||
ignoreHTTPSErrors: true,
|
||||
screenshot: 'only-on-failure',
|
||||
permissions: ['clipboard-read']
|
||||
permissions: ['clipboard-read'],
|
||||
|
||||
/* Emulates the user timezone */
|
||||
timezoneId: 'Asia/Shanghai'
|
||||
},
|
||||
|
||||
projects: [
|
||||
|
|
Loading…
Reference in New Issue