clean up code by removing test selector (#22520)

This commit is contained in:
malinac02 2023-08-23 14:15:08 -07:00 committed by GitHub
parent 7f1f54d856
commit 9b0540dfbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -43,7 +43,6 @@
}}
class={{if @readOnly "readonly-codemirror"}}
data-test-component="code-mirror-modifier"
data-test-example-modal-json-text
></div>
{{#if @helpText}}

View File

@ -11,7 +11,7 @@ import { hbs } from 'ember-cli-htmlbars';
const SELECTORS = {
policyText: '[data-test-modal-title]',
policyDescription: (type) => `[data-test-example-modal-text=${type}]`,
jsonText: '[data-test-example-modal-json-text]',
jsonText: '[data-test-component="code-mirror-modifier"]',
informationLink: '[data-test-example-modal-information-link]',
};