Used resolveLocalE2ePath for path to test results

This commit is contained in:
jamelreid 2022-01-21 17:51:46 -05:00
parent af8fedf6f6
commit 9cd3c6976d
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
const fs = require( 'fs' );
const path = require( 'path' );
const { resolveLocalE2ePath } = require( '../utils' );
const resultsFile = path.resolve( __dirname, '../test-results.json' );
const resultsFile = resolveLocalE2ePath( 'test-results.json' );
const buildOutput = ( results ) => {
const { TITLE, SMOKE_TEST_URL } = process.env;