Skip to content

Commit 0e4ee63

Browse files
author
Brylie Christopher Oxley
committed
Run eslint --fix
1 parent 0a69081 commit 0e4ee63

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.eslintrc.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ module.exports = {
88
browser: true,
99
},
1010

11+
ignorePatterns: ['docs/',],
12+
1113
rules: {
1214
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
1315
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',

tests/unit/specs/components/ChooserStep.spec.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('ChooserStep.vue', () => {
1919
})
2020

2121
// It's only for one state, but this should be enough to test if the logic works properly
22-
it('Check that all computed i18n props return correct values', async () => {
22+
it('Check that all computed i18n props return correct values', async() => {
2323
await wrapper.setProps({
2424
disabledDue: '',
2525
enabled: true,
@@ -37,7 +37,7 @@ describe('ChooserStep.vue', () => {
3737
expect(wrapper.vm.yesText).toBe('stepper.BY.selected')
3838
})
3939

40-
it('Check that all computed i18n props return correct values after true selected', async () => {
40+
it('Check that all computed i18n props return correct values after true selected', async() => {
4141
await wrapper.setProps({
4242
disabledDue: undefined,
4343
enabled: true,
@@ -56,7 +56,7 @@ describe('ChooserStep.vue', () => {
5656
expect(wrapper.vm.yesText).toBe('stepper.BY.selected')
5757
})
5858

59-
it('Check that all computed i18n props return correct values after false selected', async () => {
59+
it('Check that all computed i18n props return correct values after false selected', async() => {
6060
await wrapper.setProps({
6161
disabledDue: undefined,
6262
enabled: true,
@@ -85,7 +85,7 @@ describe('ChooserStep.vue', () => {
8585
expect(wrapper.vm.radio).toBe('no')
8686
})
8787

88-
it('props:selected true', async () => {
88+
it('props:selected true', async() => {
8989
await wrapper.setProps({
9090
selected: true,
9191
name: 'FS',

0 commit comments

Comments
 (0)