Skip to content

Commit

Permalink
Increase timeout to 30s
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Oct 2, 2023
1 parent fd1d194 commit b2d3d21
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('MediaElement', () => {

const results = await axe(container);
expect(results).toHaveNoViolations();
}, 10000);
}, 30000);

it('should render MediaElement for a resource of type=`gif` without accessibility violations', async () => {
useLocalMedia.mockReturnValue({
Expand All @@ -139,7 +139,7 @@ describe('MediaElement', () => {

const results = await axe(container);
expect(results).toHaveNoViolations();
}, 10000);
}, 30000);

it('should render MediaElement for a resource of type=`video` without accessibility violations', async () => {
useLocalMedia.mockReturnValue({
Expand All @@ -150,7 +150,7 @@ describe('MediaElement', () => {

const results = await axe(container);
expect(results).toHaveNoViolations();
}, 10000);
}, 30000);

it("should render dropdown menu's more icon for uploaded image", () => {
useLocalMedia.mockReturnValue({
Expand Down

0 comments on commit b2d3d21

Please sign in to comment.