File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
compass-e2e-tests/helpers Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ interface Coverage {
116116
117117interface RenderLogEntry {
118118 timestamp : string ;
119- type : any ;
119+ type : string ;
120120 text : string ;
121121 args : unknown ;
122122}
@@ -173,10 +173,7 @@ export class Compass {
173173 const pages = await puppeteerBrowser . pages ( ) ;
174174 const page = pages [ 0 ] ;
175175
176- // TS infers the type of `message` correctly here, which would conflict with
177- // what we get from `import type { ConsoleMessage } from 'puppeteer'`, so we
178- // leave out an explicit type annotation.
179- page . on ( 'console' , ( message : any ) => {
176+ page . on ( 'console' , ( message ) => {
180177 const run = async ( ) => {
181178 // human and machine readable, always UTC
182179 const timestamp = new Date ( ) . toISOString ( ) ;
Original file line number Diff line number Diff line change 11'use strict' ;
22exports = function ( ) { } ;
33
4+ exports . info = require ( './commands/info' ) ;
45exports . release = require ( './commands/release' ) ;
56exports . upload = require ( './commands/upload' ) ;
67exports . download = require ( './commands/download' ) ;
You can’t perform that action at this time.
0 commit comments