Skip to content

Commit

Permalink
Add skipped and todo tests to test_repo
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoH2O1999 committed Feb 10, 2024
1 parent 8612553 commit df77578
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 15 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
lib/
node_modules/
test_repo/
jest.config.js
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
lib/
node_modules/
node_modules/
test_repo/
4 changes: 2 additions & 2 deletions test_repo/test-app/test/NuxtLogo.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeFalsy()
Expand All @@ -21,7 +21,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeFalsy()
Expand Down
4 changes: 2 additions & 2 deletions test_repo/test-app/test/NuxtLogo2.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
expect(false).toBeFalsy()
Expand All @@ -21,7 +21,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
expect(false).toBeFalsy()
Expand Down
4 changes: 2 additions & 2 deletions test_repo/test-app/test/NuxtLogo3.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
})
Expand All @@ -20,7 +20,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
})
Expand Down
10 changes: 6 additions & 4 deletions test_repo/test-app/test/NuxtLogo4.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
})
Expand All @@ -23,10 +23,12 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
})

test.todo('TODO')
})

describe('NuxtLogo4', () => {
Expand All @@ -36,8 +38,8 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})
test('is not a Vue instance', () => {

test.skip('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
})
})
Expand Down
6 changes: 3 additions & 3 deletions test_repo/test-app/test/NuxtLogo5.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
})
Expand All @@ -23,7 +23,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
const wrapper = mount(NuxtLogo)
})
Expand All @@ -36,7 +36,7 @@ describe('NuxtLogo', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})

test('is not a Vue instance', () => {
throw 'fail'
})
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["node_modules", "./lib"]
"exclude": ["node_modules", "./lib", "./test_repo"]
}

0 comments on commit df77578

Please sign in to comment.