Lines Matching refs:destinations
134 async function getReportersMap(reporters, destinations, rootTest) { argument
136 …const destination = kBuiltinDestinations.get(destinations[i]) ?? createWriteStream(destinations[i]…
173 const { reporters, destinations } = parseCommandLine();
174 const reportersMap = await getReportersMap(reporters, destinations, rootTest);
192 let destinations;
200 destinations = [kDefaultDestination];
203 destinations = [kDefaultDestination];
205 destinations = getOptionValue('--test-reporter-destination');
207 if (reporters.length === 0 && destinations.length === 0) {
211 if (reporters.length === 1 && destinations.length === 0) {
212 ArrayPrototypePush(destinations, kDefaultDestination);
215 if (destinations.length !== reporters.length) {
244 destinations, property