Skip to content
New issue

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

Migrate CI from Travis to Github Actions #685

Merged
merged 23 commits into from Feb 11, 2021
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

add back snapshots with proper casing

  • Loading branch information
fcjr committed Feb 10, 2021
commit d64e84fb94062f944c30b1489a63dd1a7caac55a
@@ -0,0 +1,85 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`app/hub/Views/Step1_LoginForm component Snapshot tests with react-test-renderer Login Form view is rendered correctly 1`] = `
<form
className="Step1_LogInForm"
onSubmit={[Function]}
>
<div
className="Step1_LogInForm__item row align-center-middle"
>
<div
className="columns small-12"
>
<label
className="Step1_LogInForm__inputLabel"
htmlFor="login-email"
>
email_colon
</label>
<input
autoComplete="off"
className="Step1_LogInForm__inputBox"
id="login-email"
name="email"
onChange={[Function]}
pattern=".{1,}"
placeholder="example@mail.com"
type="text"
value=""
/>
</div>
</div>
<div
className="Step1_LogInForm__item row align-center-middle"
>
<div
className="columns small-12"
>
<label
className="Step1_LogInForm__inputLabel"
htmlFor="login-password"
>
password_colon
</label>
<input
className="Step1_LogInForm__inputBox"
id="login-password"
name="password"
onChange={[Function]}
pattern=".{1,}"
type="password"
value=""
/>
</div>
</div>
<div
className="Step1_LogInForm__item row align-center-middle"
>
<div
className="columns small-12"
>
<span
className="Step1_LogInForm__link"
>
<div
className="Step1_LogInForm__forgotPassword"
onClick={[Function]}
>
forgot_password
</div>
</span>
</div>
</div>
<div
className="Step1_LogInForm__ctaButtonContainer"
>
<button
className="Step1_LogInForm__ctaButton"
type="submit"
>
sign_in
</button>
</div>
</form>
`;
ProTip! Use n and p to navigate between commits in a pull request.