Skip to content

Commit

Permalink
fix: try tests -d
Browse files Browse the repository at this point in the history
  • Loading branch information
arpowers committed Mar 17, 2024
1 parent 9eab228 commit bbd44cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
run: npm exec -- vitest run @fiction/core/plugin-user/test/userUpdate.ci.test.ts -u

- name: DEV unit tests
run: npm exec -- vitest run wip -u
run: npm exec -- vitest run wip -u --reporter=hanging-process --reporter=verbose

- name: STABLE unit tests
run: npm exec -- vitest run ci -u
Expand Down
2 changes: 1 addition & 1 deletion @fiction/plugin-sites/themes/fiction/el/ElFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const uc = vue.computed(() => {
>
<h3
v-if="col.groupName"
class="mb-6 text-left font-sans text-sm font-medium uppercase tracking-widest"
class="mb-6 text-left font-sans text-xs text-theme-500 dark:text-theme-300 font-medium uppercase tracking-widest"
>
{{ col.groupName }}
</h3>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"app:dev-r": "npm exec -w @fiction/www -- fiction run dev-r",
"unit:ci": "npm exec -- vitest ci",
"unit:build": "npm exec -- vitest run build -u --no-file-parallelism",
"unit:dev": "npm exec -- vitest wip",
"unit:dev": "npm exec -- vitest wip --reporter=hanging-process --reporter=verbose",
"unit:e2e": "npm exec -- vitest e2e",
"unit:all": "npm exec -- vitest wip && npm exec -- vitest ci && npm exec -- vitest build",
"unit:dist": "npm exec -- vitest dist",
Expand Down

0 comments on commit bbd44cd

Please sign in to comment.