Skip to content

Commit 5771a91

Browse files
author
Suchita Doshi
committed
update tests
1 parent 55944fb commit 5771a91

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

transforms/tracked-properties/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ import { alias } from '@ember/object/computed';
282282

283283
export default class Foo extends Component {
284284
bar;
285+
// baz class property
285286
baz = 'barBaz';
286287

287288
@alias('model.isFoo')
@@ -309,6 +310,7 @@ import { alias } from '@ember/object/computed';
309310

310311
export default class Foo extends Component {
311312
bar;
313+
// baz class property
312314
@tracked baz = 'barBaz';
313315

314316
@alias('model.isFoo')

transforms/tracked-properties/__testfixtures__/non-computed-decorators.input.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { alias } from '@ember/object/computed';
44

55
export default class Foo extends Component {
66
bar;
7+
// baz class property
78
baz = 'barBaz';
89

910
@alias('model.isFoo')

transforms/tracked-properties/__testfixtures__/non-computed-decorators.output.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { alias } from '@ember/object/computed';
55

66
export default class Foo extends Component {
77
bar;
8+
// baz class property
89
@tracked baz = 'barBaz';
910

1011
@alias('model.isFoo')

0 commit comments

Comments
 (0)