Skip to content

Commit

Permalink
refactor(qunit)
Browse files Browse the repository at this point in the history
  • Loading branch information
marker dao ® committed Oct 17, 2024
1 parent 8985100 commit a1c3af4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ testModule('API', moduleConfig, () => {
this.instance.option('value', 'new value');
});

test('toHtml changed value correctly', function(assert) {
test('toHtml changes value correctly', function(assert) {
const converter = {
toHtml: () => {
return '<p>NEW VALUE</p>';
Expand All @@ -693,7 +693,7 @@ testModule('API', moduleConfig, () => {
assert.strictEqual(this.instance.option('value'), '<p>NEW VALUE</p>');
});

test('fromHtml changed value correctly', function(assert) {
test('fromHtml changes value correctly', function(assert) {
const converter = {
fromHtml: () => {
return '**NEW VALUE**';
Expand Down

0 comments on commit a1c3af4

Please sign in to comment.