Remove Ivy Codemirror (#14659)

* 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
This commit is contained in:
Angel Garbarino
2022-03-29 10:25:16 -06:00
committed by GitHub
parent f2a2b8bd38
commit e1c89ec70d
31 changed files with 232 additions and 187 deletions

View File

@@ -19,8 +19,7 @@ module('Integration | Component | console/log json', function (hooks) {
this.set('content', objectContent);
await render(hbs`{{console/log-json content=content}}`);
const instance = this.codeMirror.instanceFor(find('[data-test-component=json-editor]').id);
assert.equal(instance.getValue(), expectedText);
const instance = find('[data-test-component=code-mirror-modifier]').innerText;
assert.equal(instance, expectedText);
});
});