Files
frontend-app-learner-dashboard/src/containers/CourseCard/components/CourseCardActions/__snapshots__/ViewCourseButton.test.jsx.snap
Leangseu Kim 7f210e7483 chore: fix urls
Co-authored-by: Nathan Sprenkle <nsprenkle@users.noreply.github.com>

chore: marketing and upgrade url are full urls
2022-10-04 16:23:38 -04:00

22 lines
325 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`ViewCourseButton snapshot default button 1`] = `
<Button
as="a"
disabled={false}
href="homeUrl"
>
View Course
</Button>
`;
exports[`ViewCourseButton snapshot disabled button 1`] = `
<Button
as="a"
disabled={true}
href="homeUrl"
>
View Course
</Button>
`;