diff --git a/test-app/tests/integration/modifiers/style-test.ts b/test-app/tests/integration/modifiers/style-test.ts index a1c6dfe5..8d364b3c 100644 --- a/test-app/tests/integration/modifiers/style-test.ts +++ b/test-app/tests/integration/modifiers/style-test.ts @@ -66,6 +66,12 @@ module('Integration | Modifiers | style', function (hooks) { assert.dom('svg').hasStyle({ display: 'none' }); }); + test('it supports usage on math elements', async function (assert) { + await render(hbs``); + + assert.dom('math').hasStyle({ display: 'none' }); + }); + { interface Context extends TestContext { // eslint-disable-next-line @typescript-eslint/ban-types