Skip to content

Commit

Permalink
chore: Increased RERENDER_TIME to 100ms
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Feb 1, 2024
1 parent c878cd2 commit 3bc9863
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs-app/tests/helpers/resize-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { find } from '@ember/test-helpers';
// This is a magic number. It is the time (in ms) for things to `settle`
// after a resize. It is the time that we need to wait before assertions
// that should pass will always pass.
const RERENDER_TIME = 50;
const RERENDER_TIME = 100;

export function timeout(milliseconds = RERENDER_TIME): Promise<void> {
return new Promise((resolve) => {
Expand Down
2 changes: 1 addition & 1 deletion test-app/tests/helpers/resize-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { find } from '@ember/test-helpers';
// This is a magic number. It is the time (in ms) for things to `settle`
// after a resize. It is the time that we need to wait before assertions
// that should pass will always pass.
const RERENDER_TIME = 50;
const RERENDER_TIME = 100;

export function timeout(milliseconds = RERENDER_TIME): Promise<void> {
return new Promise((resolve) => {
Expand Down

0 comments on commit 3bc9863

Please sign in to comment.