Lines Matching refs:destinations
136 async function getReportersMap(reporters, destinations, rootTest) { argument
138 …const destination = kBuiltinDestinations.get(destinations[i]) ?? createWriteStream(destinations[i]…
175 const { reporters, destinations } = parseCommandLine();
176 const reportersMap = await getReportersMap(reporters, destinations, rootTest);
194 let destinations;
202 destinations = [kDefaultDestination];
205 destinations = [kDefaultDestination];
207 destinations = getOptionValue('--test-reporter-destination');
209 if (reporters.length === 0 && destinations.length === 0) {
213 if (reporters.length === 1 && destinations.length === 0) {
214 ArrayPrototypePush(destinations, kDefaultDestination);
217 if (destinations.length !== reporters.length) {
246 destinations, property