0455d31b84
* setup * fix mode issue * actions * readonly styling * remove ivycodemirror from package json * wip * test coverage for json editor * text fixes * fix tests * fix cursor issue * changelog * clean up * fix * address pr comments * unused css and it overides other styling. * fix * fix comment
9 lines
342 B
JavaScript
9 lines
342 B
JavaScript
import { isPresent, notHasClass, text } from 'ember-cli-page-object';
|
|
|
|
export default {
|
|
title: text('[data-test-component=json-editor-title]'),
|
|
hasToolbar: isPresent('[data-test-component=json-editor-toolbar]'),
|
|
hasJSONEditor: isPresent('[data-test-component="code-mirror-modifier"]'),
|
|
canEdit: notHasClass('readonly-codemirror'),
|
|
};
|