From 1dc040d7f8280f6628335358cd9fd3a536379ad5 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Tue, 7 Nov 2017 12:19:56 +0000 Subject: [PATCH] Ignore test files from coverage --- package.json | 2 +- src/scripts/src/choices.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6019c3b..7ccbcd1 100644 --- a/package.json +++ b/package.json @@ -86,7 +86,7 @@ "src/**/**/**/**/**/*.js" ], "exclude": [ - "src/**/**/**/**/**/*.spec.js" + "src/**/**/**/**/**/*.test.js" ] } } diff --git a/src/scripts/src/choices.test.js b/src/scripts/src/choices.test.js index 6185496..da5921d 100644 --- a/src/scripts/src/choices.test.js +++ b/src/scripts/src/choices.test.js @@ -4,7 +4,7 @@ import { spy, stub } from 'sinon'; import Choices from './choices'; import { EVENTS } from './constants'; -describe.only('choices', () => { +describe('choices', () => { let instance; let passedElement;