@@ -16,12 +16,12 @@ module('Integration | Component | table of contents', function (hooks) {
16
16
this . set ( 'classesIDs' , CLASSES ) ;
17
17
18
18
await render ( hbs `
19
- {{
20
- table-of-contents showPrivateClasses=true
21
- version=emberVersion
22
- classesIDs=classesIDs
23
- isShowingNamespaces=true
24
- }}
19
+ <TableOfContents
20
+ @ showPrivateClasses={{ true}}
21
+ @ version={{this. emberVersion}}
22
+ @ classesIDs={{this. classesIDs}}
23
+ @ isShowingNamespaces={{ true}}
24
+ />
25
25
` ) ;
26
26
27
27
const contentTitle = document . querySelector (
@@ -43,12 +43,12 @@ module('Integration | Component | table of contents', function (hooks) {
43
43
this . set ( 'moduleIDs' , MODULES ) ;
44
44
45
45
await render ( hbs `
46
- {{
47
- table-of-contents showPrivateClasses=true
48
- version=emberVersion
49
- moduleIDs=moduleIDs
50
- isShowingNamespaces=true
51
- }}
46
+ <TableOfContents
47
+ @ showPrivateClasses={{ true}}
48
+ @ version={{this. emberVersion}}
49
+ @ moduleIDs={{this. moduleIDs}}
50
+ @ isShowingNamespaces={{ true}}
51
+ />
52
52
` ) ;
53
53
54
54
const contentReference = '.toc-level-1' ;
@@ -73,12 +73,12 @@ module('Integration | Component | table of contents', function (hooks) {
73
73
this . set ( 'moduleIDs' , MODULES ) ;
74
74
75
75
await render ( hbs `
76
- {{
77
- table-of-contents showPrivateClasses=true
78
- version=emberVersion
79
- moduleIDs=moduleIDs
80
- isShowingNamespaces=true
81
- }}
76
+ <TableOfContents
77
+ @ showPrivateClasses={{ true}}
78
+ @ version={{this. emberVersion}}
79
+ @ moduleIDs={{this. moduleIDs}}
80
+ @ isShowingNamespaces={{ true}}
81
+ />
82
82
` ) ;
83
83
84
84
const contentTitle = document . querySelector (
@@ -107,12 +107,12 @@ module('Integration | Component | table of contents', function (hooks) {
107
107
this . set ( 'moduleIDs' , MODULES ) ;
108
108
109
109
await render ( hbs `
110
- {{
111
- table-of-contents showPrivateClasses=true
112
- version=emberVersion
113
- moduleIDs=moduleIDs
114
- isShowingNamespaces=true
115
- }}
110
+ <TableOfContents
111
+ @ showPrivateClasses={{ true}}
112
+ @ version={{this. emberVersion}}
113
+ @ moduleIDs={{this. moduleIDs}}
114
+ @ isShowingNamespaces={{ true}}
115
+ />
116
116
` ) ;
117
117
118
118
const titleButton = document . querySelector (
0 commit comments