Commit 5b141d24 authored by minahilnichols's avatar minahilnichols

Create about your company page for registration flow

Changelog: changed
EE: true
parent 9a325692
......@@ -3,7 +3,7 @@ require 'spec_helper'
RSpec.describe 'Company Information', :js do
let_it_be(:user) { create(:user) }
let_it_be(:fields) { ['Company Name', 'Number of employees', 'Country', 'Telephone Number (Optional)', 'Website (Optional)', 'GitLab Ultimate trial (Optional)'] }
let_it_be(:fields) { ['Company Name', 'Number of employees', 'Country', 'Telephone number (optional)', 'Website (optional)', 'GitLab Ultimate trial (optional)'] }
before do
allow(Gitlab).to receive(:com?).and_return(true).at_least(:once)
......
......@@ -41,7 +41,7 @@ describe('RegistrationForm', () => {
it('sets the trial value to be true', () => {
expect(wrapper.props().trial).toBe(true);
expect(wrapper.findComponent(RegistrationTrialToggle).props('active')).toEqual(true);
expect(wrapper.findComponent(RegistrationTrialToggle).props('active')).toBe(true);
});
it.each`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment