File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
client/src/__tests__/integration Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1919 - name : Install node_modules
2020 run : docker-compose run client yarn
2121 - name : Run tests
22- run : docker-compose run client yarn test
22+ run : docker-compose run client yarn test --run
2323 - name : Stop containers
2424 if : always()
2525 run : docker-compose -f "./../docker-compose-ci.yml" down
Original file line number Diff line number Diff line change 11import { test , describe , expect } from "vitest" ;
2- import { mount } from "@vue/test-utils" ;
2+ import { shallowMount } from "@vue/test-utils" ;
33import App from "./../../App.vue" ;
44
55describe ( "App" , ( ) => {
6- describe ( "when mounting" , ( ) => {
7- test ( "can renderq " , ( ) => {
8- const wrapper = mount ( App ) ;
6+ describe ( "when shallow mounting" , ( ) => {
7+ test ( "can render " , ( ) => {
8+ const wrapper = shallowMount ( App ) ;
99
1010 expect ( wrapper . html ( ) ) . toBeTruthy ( ) ;
1111 expect ( wrapper . exists ( ) ) . toBeTruthy ( ) ;
You can’t perform that action at this time.
0 commit comments