You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Horde: Default all tests/suite on when selecting automation project
#jira none #skipci #preflight none #rnx [CL 25200323 by Josh Engebretson in ue5-main branch]
This commit is contained in:
@@ -58,26 +58,25 @@ export class TestDataHandler {
|
||||
this.state.streams = undefined;
|
||||
}
|
||||
|
||||
//this.state.tests = undefined;
|
||||
//this.state.suites = undefined;
|
||||
|
||||
const tests = this.streamTests;
|
||||
this.state.tests = this.state.tests?.filter(test => !!tests.find(t => t.name === test));
|
||||
if (!this.state.tests?.length) {
|
||||
this.state.tests = undefined;
|
||||
}
|
||||
|
||||
const suites = this.streamSuites;
|
||||
this.state.suites = this.state.suites?.filter(suite => !!suites.find(s => s.name === suite));
|
||||
if (!this.state.suites?.length) {
|
||||
this.state.suites = undefined;
|
||||
}
|
||||
|
||||
if (initStreams) {
|
||||
const streams = this.getAutomationStreams(automation);
|
||||
this.state.streams = streams.map(s => s);
|
||||
}
|
||||
|
||||
this.state.tests = undefined;
|
||||
this.state.suites = undefined;
|
||||
|
||||
const tests = this.streamTests;
|
||||
if (tests?.length) {
|
||||
this.state.tests = tests.map(t => t.name);
|
||||
}
|
||||
|
||||
const suites = this.streamSuites;
|
||||
if (suites?.length) {
|
||||
this.state.suites = suites.map(t => t.name);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
if (this.updateSearch()) {
|
||||
|
||||
Reference in New Issue
Block a user