Skip to content
Prev Previous commit
Next Next commit
Cleared linting problems
  • Loading branch information
JackieBinya committed Apr 3, 2020
commit 33961ced2e2498dee06d6077088a9bedd25a80eb
7 changes: 3 additions & 4 deletions tests/unit/specs/components/CopyrightWaiverStep.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ describe('Test the functionality of Computed properties', () => {
beforeEach(() => {
wrapper = mount(CopyrightWaiverStep, {
localVue,
data(){
return{
data() {
return {
agreed: false,
confirmed: false
confirmed: false
}
},
propsData: {
Expand Down Expand Up @@ -100,7 +100,6 @@ describe('Test the functionality of Computed properties', () => {
it('User checks agreed and then checks confirmed', () => {
const checkbox = wrapper.findAll('input[type="checkbox"]').at(0)
checkbox.setChecked()


const checkbox1 = wrapper.findAll('input[type="checkbox"]').at(1)
checkbox1.setChecked()
Expand Down