Skip to content

Commit

Permalink
FIX: ci: test delay
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-js committed Dec 20, 2023
1 parent ae6d306 commit 3948542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/common/function.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { setTimeoutAsync } from './time.js'
const { describe, it } = globalThis

const TIME_WAIT_SCALE = process.platform !== 'darwin' ? 1 : 10 // TODO: NOTE: macos fs watcher event seems to be both batched and late than linux/win32, so just wait longer
const TIME_SCALE = 1.5
const TIME_SCALE = process.platform === 'linux' ? 1.5 : 15

describe('Common.Function', () => {
it('debounce()', async () => { // TODO: DEPRECATE
Expand Down

0 comments on commit 3948542

Please sign in to comment.