We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The error occurs on:
export async function renderTestFailureStatsChart(chartEl) { const componentsToDaysToStats = await componentTestStats; const components = getOption("components"); const allTestStatsDays = [].concat .apply( [], Object.entries(componentsToDaysToStats) .filter(([component, daysToStats]) => components.includes(component)) .map(([_, daysToStats]) => Object.entries(daysToStats)) ) .filter((testStatsDay) => "bugs" in testStatsDay[1]); const minDate = getPlainDate( allTestStatsDays.reduce((minTestStatsDay, testStatsDay) => Temporal.PlainDate.compare( getPlainDate(testStatsDay[0]), getPlainDate(minTestStatsDay[0]) ) < 0 ? testStatsDay : minTestStatsDay )[0] );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The error occurs on:
The text was updated successfully, but these errors were encountered: