Test Analytics Onboarding
-
+
+
+ {t('Get Started with Test Analytics')}
+
+ {t(
+ 'Test Analytics offers data on test run times, failure rates, and identifies flaky tests to help decrease the risk of deployment failures and make it easier to ship new features quickly.'
+ )}
+
+
+ {t('Select a setup option')}
+
+
);
}
@@ -16,3 +50,31 @@ const LayoutGap = styled('div')`
display: grid;
gap: ${space(2)};
`;
+
+const OnboardingContainer = styled('div')`
+ padding: ${space(1.5)} ${space(4)};
+ border: 1px solid ${p => p.theme.border};
+ border-radius: ${p => p.theme.borderRadius};
+`;
+
+const IntroContainer = styled('div')`
+ border-bottom: 1px solid ${p => p.theme.border};
+ padding-bottom: ${space(3)};
+`;
+
+const GetStartedHeader = styled('h2')`
+ font-size: 1.625rem;
+ color: ${p => p.theme.tokens.content.primary};
+ line-height: 40px;
+`;
+
+const TAValueText = styled('p')`
+ font-size: ${p => p.theme.fontSizeLarge};
+ color: ${p => p.theme.tokens.content.primary};
+`;
+
+const SelectOptionHeader = styled('h5')`
+ font-size: ${p => p.theme.fontSizeExtraLarge};
+ color: ${p => p.theme.tokens.content.primary};
+ margin-top: ${space(3)};
+`;