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

Fix proptype issue with OptIn component tests

  • Loading branch information
wlycdgr committed Feb 10, 2021
commit 88fa662b0809defe534fd2dc3f1b0a8c3ff8c71e
@@ -22,6 +22,7 @@ describe('app/panel/Settings/OptIn.jsx', () => {
const settingsData = {
enable_metrics: false,
enable_human_web: false,
enable_abtests: false,
};

const component = renderer.create(
@@ -37,6 +38,7 @@ describe('app/panel/Settings/OptIn.jsx', () => {
const settingsData = {
enable_metrics: true,
enable_human_web: true,
enable_abtests: true,
};

const component = renderer.create(
@@ -54,6 +56,7 @@ describe('app/panel/Settings/OptIn.jsx', () => {
const settingsData = {
enable_metrics: true,
enable_human_web: true,
enable_abtests: true,
};
const toggleCheckbox = jest.fn();

@@ -89,6 +89,7 @@ exports[`app/panel/Settings/OptIn.jsx Snapshot tests with react-test-renderer Op
className="s-square-checkbox"
>
<input
defaultChecked={false}
id="settings-allow-abtests"
name="enable_abtests"
onClick={[Function]}
@@ -206,6 +207,7 @@ exports[`app/panel/Settings/OptIn.jsx Snapshot tests with react-test-renderer Op
className="s-square-checkbox"
>
<input
defaultChecked={true}
id="settings-allow-abtests"
name="enable_abtests"
onClick={[Function]}
ProTip! Use n and p to navigate between commits in a pull request.