Fixed tests

no issue

 - Fixed signup test with correct plan value
This commit is contained in:
Rish 2020-07-16 12:11:01 +05:30
parent 398d851e7b
commit 4eec6f31ec

View File

@ -34,7 +34,7 @@ describe('SignupPage', () => {
const {nameInput, emailInput, submitButton, mockOnActionFn} = setup();
const nameVal = 'J Smith';
const emailVal = 'jsmith@example.com';
const planVal = 'FREE';
const planVal = 'Free';
fireEvent.change(nameInput, {target: {value: nameVal}});
fireEvent.change(emailInput, {target: {value: emailVal}});