2022-03-29 16:25:16 +00:00
|
|
|
import { isPresent, notHasClass, text } from 'ember-cli-page-object';
|
2021-05-06 16:59:15 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
title: text('[data-test-component=json-editor-title]'),
|
|
|
|
hasToolbar: isPresent('[data-test-component=json-editor-toolbar]'),
|
2022-03-29 16:25:16 +00:00
|
|
|
hasJSONEditor: isPresent('[data-test-component="code-mirror-modifier"]'),
|
|
|
|
canEdit: notHasClass('readonly-codemirror'),
|
2021-05-06 16:59:15 +00:00
|
|
|
};
|