We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
foundations/theming
1 parent a5738f2 commit a8c8db8Copy full SHA for a8c8db8
showcase/tests/acceptance/components/hds/theming-test.js
@@ -0,0 +1,20 @@
1
+/**
2
+ * Copyright (c) HashiCorp, Inc.
3
+ * SPDX-License-Identifier: MPL-2.0
4
+ */
5
+
6
+import { module, test } from 'qunit';
7
+import { visit } from '@ember/test-helpers';
8
+import { setupApplicationTest } from 'showcase/tests/helpers';
9
+import { a11yAudit } from 'ember-a11y-testing/test-support';
10
11
+module('Acceptance | Foundations | hds/theming', function (hooks) {
12
+ setupApplicationTest(hooks);
13
14
+ test('Foundations/hds/theming page passes automated a11y checks', async function (assert) {
15
+ await visit('/foundations/theming');
16
+ await a11yAudit();
17
18
+ assert.ok(true, 'a11y automation audit passed');
19
+ });
20
+});
0 commit comments