Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/ember-glimmer/tests/integration/svg-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { set } from 'ember-metal/property_set';
import { strip } from '../utils/abstract-test-case';

moduleFor('SVG element tests', class extends RenderingTest {
['@htmlbars unquoted viewBox property is output'](assert) {
['@test unquoted viewBox property is output'](assert) {
let viewBoxString = '0 0 100 100';

this.render('<div><svg viewBox={{model.viewBoxString}}></svg></div>', {
Expand Down Expand Up @@ -39,7 +39,7 @@ moduleFor('SVG element tests', class extends RenderingTest {
`);
}

['@htmlbars quoted viewBox property is output'](assert) {
['@test quoted viewBox property is output'](assert) {
let viewBoxString = '0 0 100 100';

this.render('<div><svg viewBox="{{model.viewBoxString}}"></svg></div>', {
Expand Down Expand Up @@ -75,7 +75,7 @@ moduleFor('SVG element tests', class extends RenderingTest {
`);
}

['@htmlbars quoted viewBox property is concat']() {
['@test quoted viewBox property is concat']() {
let viewBoxString = '100 100';

this.render('<div><svg viewBox="0 0 {{model.viewBoxString}}"></svg></div>', {
Expand Down Expand Up @@ -115,7 +115,7 @@ moduleFor('SVG element tests', class extends RenderingTest {
`);
}

['@htmlbars class is output']() {
['@test class is output']() {
this.render('<div><svg class=\'{{model.color}} tall\'></svg></div>', {
model: {
color: 'blue'
Expand Down