diff --git a/tests/lib/rules/await-async-query.test.ts b/tests/lib/rules/await-async-query.test.ts index 25fba0a5..e913dd20 100644 --- a/tests/lib/rules/await-async-query.test.ts +++ b/tests/lib/rules/await-async-query.test.ts @@ -12,6 +12,7 @@ import { createRuleTester } from '../test-utils'; const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ + '@testing-library/dom', '@testing-library/react', '@marko/testing-library', ]; diff --git a/tests/lib/rules/no-await-sync-query.test.ts b/tests/lib/rules/no-await-sync-query.test.ts index 58760bd4..4e8e8304 100644 --- a/tests/lib/rules/no-await-sync-query.test.ts +++ b/tests/lib/rules/no-await-sync-query.test.ts @@ -8,6 +8,7 @@ import { createRuleTester } from '../test-utils'; const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ + '@testing-library/dom', '@testing-library/react', '@marko/testing-library', ]; diff --git a/tests/lib/rules/no-promise-in-fire-event.test.ts b/tests/lib/rules/no-promise-in-fire-event.test.ts index c94a9fb5..d43f4ee3 100644 --- a/tests/lib/rules/no-promise-in-fire-event.test.ts +++ b/tests/lib/rules/no-promise-in-fire-event.test.ts @@ -5,6 +5,7 @@ const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ '@testing-library/foo', + '@testing-library/dom', '@marko/testing-library', ]; diff --git a/tests/lib/rules/no-wait-for-empty-callback.test.ts b/tests/lib/rules/no-wait-for-empty-callback.test.ts index 8597d943..b1b84e3f 100644 --- a/tests/lib/rules/no-wait-for-empty-callback.test.ts +++ b/tests/lib/rules/no-wait-for-empty-callback.test.ts @@ -5,6 +5,7 @@ const ruleTester = createRuleTester(); const ALL_WAIT_METHODS = ['waitFor', 'waitForElementToBeRemoved']; const SUPPORTED_TESTING_FRAMEWORKS = [ + '@testing-library/dom', '@testing-library/react', '@marko/testing-library', ]; diff --git a/tests/lib/rules/no-wait-for-multiple-assertions.test.ts b/tests/lib/rules/no-wait-for-multiple-assertions.test.ts index 71242d99..ce2770c5 100644 --- a/tests/lib/rules/no-wait-for-multiple-assertions.test.ts +++ b/tests/lib/rules/no-wait-for-multiple-assertions.test.ts @@ -6,6 +6,7 @@ import { createRuleTester } from '../test-utils'; const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ + '@testing-library/dom', '@testing-library/react', '@marko/testing-library', ]; diff --git a/tests/lib/rules/no-wait-for-side-effects.test.ts b/tests/lib/rules/no-wait-for-side-effects.test.ts index b2a5dbf9..24bb0a9f 100644 --- a/tests/lib/rules/no-wait-for-side-effects.test.ts +++ b/tests/lib/rules/no-wait-for-side-effects.test.ts @@ -4,6 +4,7 @@ import { createRuleTester } from '../test-utils'; const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ + '@testing-library/dom', '@testing-library/react', '@marko/testing-library', ]; diff --git a/tests/lib/rules/prefer-find-by.test.ts b/tests/lib/rules/prefer-find-by.test.ts index c856c94b..622640c3 100644 --- a/tests/lib/rules/prefer-find-by.test.ts +++ b/tests/lib/rules/prefer-find-by.test.ts @@ -16,6 +16,7 @@ const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ '@testing-library/foo', + '@testing-library/dom', '@marko/testing-library', ]; diff --git a/tests/lib/rules/prefer-query-by-disappearance.test.ts b/tests/lib/rules/prefer-query-by-disappearance.test.ts index 221b68ac..0e465446 100644 --- a/tests/lib/rules/prefer-query-by-disappearance.test.ts +++ b/tests/lib/rules/prefer-query-by-disappearance.test.ts @@ -6,6 +6,7 @@ import { createRuleTester } from '../test-utils'; const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ + '@testing-library/dom', '@testing-library/react', '@marko/testing-library', ]; diff --git a/tests/lib/rules/prefer-screen-queries.test.ts b/tests/lib/rules/prefer-screen-queries.test.ts index f28b6c2b..f44f3cb4 100644 --- a/tests/lib/rules/prefer-screen-queries.test.ts +++ b/tests/lib/rules/prefer-screen-queries.test.ts @@ -9,6 +9,7 @@ import { createRuleTester } from '../test-utils'; const ruleTester = createRuleTester(); const SUPPORTED_TESTING_FRAMEWORKS = [ + '@testing-library/dom', '@testing-library/react', '@marko/testing-library', ];