File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ import {
2020 getInstanceReportList ,
2121 resolveReportOptions ,
2222} from './fs' ;
23+ import { getFullTestSuiteFilePath } from './path' ;
2324import { ReportConfig , UploadMarkerInfo } from './types' ;
2425import { splitArrayIntoChunks } from './utils' ;
25- import { getFullTestSuiteFilePath } from './path' ;
2626
2727export async function handleCurrentsReport ( ) {
2828 const currentsConfig = getCurrentsConfig ( ) ;
@@ -64,15 +64,12 @@ export async function handleCurrentsReport() {
6464 runUrl : markerInfo . response . runUrl ,
6565 isoDate : markerInfo . isoDate ,
6666 } ) ;
67+ }
6768
68- const fullTestSuiteFileExists = await checkPathExists (
69- fullTestSuiteFilePath
70- ) ;
71-
72- if ( fullTestSuiteFileExists ) {
73- fullTestSuite = await readJsonFile < FullTestSuite > ( fullTestSuiteFilePath ) ;
74- debug ( 'Full test suite file detected: %s' , fullTestSuiteFilePath ) ;
75- }
69+ const fullTestSuiteFileExists = await checkPathExists ( fullTestSuiteFilePath ) ;
70+ if ( fullTestSuiteFileExists ) {
71+ fullTestSuite = await readJsonFile < FullTestSuite > ( fullTestSuiteFilePath ) ;
72+ debug ( 'Full test suite file detected: %s' , fullTestSuiteFilePath ) ;
7673 }
7774
7875 if ( ! fullTestSuite ) {
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ export type InstanceReportTest = {
6464 expectedStatus ?: ExpectedStatus ;
6565 annotations ?: unknown [ ] ;
6666 timeout : number ;
67+ tags ?: string [ ] ;
6768 location : LocationSchema ;
6869 attempts : InstanceReportTestAttempt [ ] ;
6970} ;
You can’t perform that action at this time.
0 commit comments