From b8739dd60f1fd3013ce89e72f6f61c331eb9a882 Mon Sep 17 00:00:00 2001 From: Cohan Carpentier Date: Mon, 23 Sep 2024 14:32:01 -0400 Subject: [PATCH] fix: ignore coverage --- README.md | 2 +- package.json | 2 +- stories/button.stories.tsx | 2 +- stories/use-local-storage.stories.tsx | 2 +- stories/use-mounted.stories.tsx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c183171..86dd137 100644 --- a/README.md +++ b/README.md @@ -18,4 +18,4 @@ https://www.npmjs.com/package/@risc0/ui | Statements | Branches | Functions | Lines | | --------------------------- | ----------------------- | ------------------------- | ----------------- | -| ![Statements](https://img.shields.io/badge/statements-40.8%25-red.svg?style=flat) | ![Branches](https://img.shields.io/badge/branches-78.49%25-red.svg?style=flat) | ![Functions](https://img.shields.io/badge/functions-69.81%25-red.svg?style=flat) | ![Lines](https://img.shields.io/badge/lines-40.8%25-red.svg?style=flat) | +| ![Statements](https://img.shields.io/badge/statements-40.88%25-red.svg?style=flat) | ![Branches](https://img.shields.io/badge/branches-81.72%25-yellow.svg?style=flat) | ![Functions](https://img.shields.io/badge/functions-75.47%25-red.svg?style=flat) | ![Lines](https://img.shields.io/badge/lines-40.88%25-red.svg?style=flat) | diff --git a/package.json b/package.json index 9e189e5..6562ddd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@risc0/ui", - "version": "0.0.172", + "version": "0.0.173", "private": false, "sideEffects": false, "type": "module", diff --git a/stories/button.stories.tsx b/stories/button.stories.tsx index ab45e9b..13925a2 100644 --- a/stories/button.stories.tsx +++ b/stories/button.stories.tsx @@ -1,5 +1,5 @@ -import { RocketIcon } from "lucide-react"; /* c8 ignore start */ +import { RocketIcon } from "lucide-react"; import { Button } from "../button"; export function Default() { diff --git a/stories/use-local-storage.stories.tsx b/stories/use-local-storage.stories.tsx index 2f93e51..61944df 100644 --- a/stories/use-local-storage.stories.tsx +++ b/stories/use-local-storage.stories.tsx @@ -1,5 +1,5 @@ -import { Button } from "button"; /* c8 ignore start */ +import { Button } from "button"; import { useLocalStorage } from "../hooks/use-local-storage"; import { Input } from "../input"; import { Label } from "../label"; diff --git a/stories/use-mounted.stories.tsx b/stories/use-mounted.stories.tsx index 0fcdcc6..7972d2a 100644 --- a/stories/use-mounted.stories.tsx +++ b/stories/use-mounted.stories.tsx @@ -1,5 +1,5 @@ -import { useEffect, useState } from "react"; /* c8 ignore start */ +import { useEffect, useState } from "react"; import { useMounted } from "../hooks/use-mounted"; export function Default() {