Skip to content

Commit

Permalink
Skip flakey test in modal component
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-ju committed Jan 31, 2023
1 parent ac3f6d5 commit 6287967
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { module, test } from 'qunit';
import { module, test, skip } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import {
click,
Expand Down Expand Up @@ -204,7 +204,7 @@ module('Integration | Component | hds/modal/index', function (hooks) {
assert.ok(opened);
});
// the following test is flakey so we're going to skip it until we find a more reliable way
test('it should call `onClose` function if provided', async function (assert) {
skip('it should call `onClose` function if provided', async function (assert) {
let closed = false;
this.set('onClose', () => (closed = true));
await render(
Expand Down

0 comments on commit 6287967

Please sign in to comment.