Skip to content

Commit

Permalink
test(ios): remove @legacy flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Jan 15, 2025
1 parent 310bfe7 commit 958628d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions detox/test/e2e/09.stress-timeouts.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ describe('StressTimeouts', () => {
await element(by.text('Timeouts')).tap();
});

it(':ios: @legacy should handle a short timeout', async () => {
it(':ios: should handle a short timeout', async () => {
await element(by.id('TimeoutShort')).tap();
await expect(element(by.text('Short Timeout Working!!!'))).toBeVisible();
});
Expand Down Expand Up @@ -39,7 +39,7 @@ describe('StressTimeouts', () => {
await expect(element(by.text('Interval Ignored!!!'))).toBeVisible();
});

it(':ios: @legacy should skip over setInterval', async () => {
it(':ios: should skip over setInterval', async () => {
await element(by.id('SkipOverInterval')).tap();
await expect(element(by.text('Interval Skipped-Over!!!'))).toBeVisible();
});
Expand Down

0 comments on commit 958628d

Please sign in to comment.