mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Fix tests by using toBeTruthy() instead of toBe(true)
This commit is contained in:
parent
b7018ffefb
commit
b848aeb579
@ -28,7 +28,7 @@ describe('code-of-conduct.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
@ -28,7 +28,7 @@ describe('data-privacy.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
@ -28,7 +28,7 @@ describe('donate.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
@ -28,7 +28,7 @@ describe('faq.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
@ -28,7 +28,7 @@ describe('imprint.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
@ -28,7 +28,7 @@ describe('organization.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
@ -28,7 +28,7 @@ describe('support.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
@ -28,7 +28,7 @@ describe('terms-and-conditions.vue', () => {
|
||||
})
|
||||
|
||||
it('renders', () => {
|
||||
expect(wrapper.is('div')).toBe(true)
|
||||
expect(wrapper.is('div')).toBeTruthy()
|
||||
})
|
||||
|
||||
it('has correct <head> content', () => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user