Skip to content

Commit

Permalink
workaround "application-template-wrapper"
Browse files Browse the repository at this point in the history
  • Loading branch information
ro0gr committed Jan 17, 2024
1 parent 15cdca1 commit 56c1480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-app/tests/unit/-private/properties/property-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ module('property', function (hooks) {

test('contenteditable', async function (this: TestContext, assert) {
const page = create({
scope: 'div',
scope: 'span',
lowercase: property('contenteditable'),
camelCase: property('contentEditable'),
});

await this.createTemplate('<div contenteditable>');
await this.createTemplate('<span contenteditable>');

assert.strictEqual(page.lowercase, 'true', 'lowercase');
assert.strictEqual(page.camelCase, 'true', 'camelCase');
Expand Down

0 comments on commit 56c1480

Please sign in to comment.