File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,6 @@ export function createUIForIterationCount() {
88
88
return label ;
89
89
}
90
90
91
-
92
91
export function createUIForSuites ( ) {
93
92
const control = document . createElement ( "nav" ) ;
94
93
const ol = document . createElement ( "ol" ) ;
@@ -186,14 +185,14 @@ export function createUIForSuites() {
186
185
187
186
function createUIForRun ( ) {
188
187
let button = document . createElement ( "button" ) ;
189
- button . textContent = ` Start Test` ;
188
+ button . textContent = " Start Test" ;
190
189
button . onclick = ( event ) => {
191
190
globalThis . benchmarkClient . start ( ) ;
192
- }
191
+ } ;
193
192
let buttons = document . createElement ( "div" ) ;
194
193
buttons . className = "button-bar" ;
195
194
buttons . appendChild ( button ) ;
196
- return buttons
195
+ return buttons ;
197
196
}
198
197
199
198
function updateURL ( ) {
You can’t perform that action at this time.
0 commit comments