-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Khaled
authored and
Khaled
committed
Feb 5, 2025
1 parent
0feb725
commit df21bb9
Showing
49 changed files
with
1,022 additions
and
1,388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
lumigator/frontend/src/components/__tests__/HelloWorld.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { describe, it, expect } from 'vitest' | ||
import { describe, it, expect } from 'vitest'; | ||
|
||
import { mount } from '@vue/test-utils' | ||
import LPageHeader from '../molecules/LPageHeader.vue' | ||
import { mount } from '@vue/test-utils'; | ||
import LPageHeader from '../molecules/LPageHeader.vue'; | ||
|
||
describe('LPageHeader', () => { | ||
it('renders properly', () => { | ||
const wrapper = mount(LPageHeader, { props: { msg: 'Hello Vitest' } }) | ||
expect(wrapper.text()).toContain('Hello Vitest') | ||
}) | ||
}) | ||
const wrapper = mount(LPageHeader, { props: { msg: 'Hello Vitest' } }); | ||
expect(wrapper.text()).toContain('Hello Vitest'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.