From f2524b4792d98c51905be1cee9830963f4dc7309 Mon Sep 17 00:00:00 2001 From: Julian Martin Date: Thu, 26 May 2022 18:29:45 +0200 Subject: [PATCH] feat: use json --- README.md | 4 ---- vite.config.ts | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 06b8644..9c1b5ec 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ [![npm version][npm-version-src]][npm-version-href] [![npm downloads][npm-downloads-src]][npm-downloads-href] -[![CircleCI][circle-ci-src]][circle-ci-href] [![Codecov][codecov-src]][codecov-href] [![License][license-src]][license-href] @@ -107,9 +106,6 @@ Copyright (c) Julian Martin [npm-downloads-src]: https://img.shields.io/npm/dt/nuxt-bugsnag.svg?style=flat-square [npm-downloads-href]: https://npmjs.com/package/nuxt-bugsnag -[circle-ci-src]: https://circleci.com/gh/JulianMar/nuxt-bugsnag/tree/master.svg?style=shield -[circle-ci-href]: https://circleci.com/gh/JulianMar/nuxt-bugsnag - [codecov-src]: https://img.shields.io/codecov/c/github/julianmar/nuxt-bugsnag.svg?style=flat-square [codecov-href]: https://codecov.io/gh/julianmar/nuxt-bugsnag diff --git a/vite.config.ts b/vite.config.ts index 185604f..9e3357d 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,7 +4,7 @@ export default defineConfig({ test: { testTimeout: 30000, coverage: { - reporter: ['html'] + reporter: ['json'] } } })