File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 873
873
await new Promise ( resolve => google . charts . setOnLoadCallback ( resolve ) ) ;
874
874
875
875
let url ;
876
- const basePath = ':8080' // Base Server Path. Modify to actual server path if deploying
877
876
if ( desiredEnvironment === undefined ) {
878
877
// URL for displaySummaryChart
879
- url = basePath + '/summary'
878
+ url = '/summary'
880
879
} else if ( desiredTest === undefined ) {
881
880
// URL for displayEnvironmentChart
882
- url = basePath + '/env' + '?env=' + desiredEnvironment + '&tests_in_top=' + desiredTestNumber ;
881
+ url = '/env' + '?env=' + desiredEnvironment + '&tests_in_top=' + desiredTestNumber ;
883
882
} else {
884
883
// URL for displayTestAndEnvironmentChart
885
- url = basePath + '/test' + '?env=' + desiredEnvironment + '&test=' + desiredTest ;
884
+ url = '/test' + '?env=' + desiredEnvironment + '&test=' + desiredTest ;
886
885
}
887
886
888
887
// Fetch data from the determined URL
902
901
} else {
903
902
displayTestAndEnvironmentChart ( data , query ) ;
904
903
}
905
- url = basePath + '/version'
904
+ url = '/version'
906
905
907
906
const verResponse = await fetch ( url ) ;
908
907
if ( ! verResponse . ok ) {
Original file line number Diff line number Diff line change 1
1
package report
2
2
3
3
// Version is gopogh version
4
- var Version = "v0.17 .0"
4
+ var Version = "v0.23 .0"
5
5
6
6
// Build includes commit sha date
7
7
var Build string
You can’t perform that action at this time.
0 commit comments