Skip to content

Commit 46b8b1c

Browse files
committed
ready for CI
1 parent 38bb152 commit 46b8b1c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/client-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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

client/src/__tests__/integration/App.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { test, describe, expect } from "vitest";
2-
import { mount } from "@vue/test-utils";
2+
import { shallowMount } from "@vue/test-utils";
33
import App from "./../../App.vue";
44

55
describe("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();

0 commit comments

Comments
 (0)