From 15f166329f3c8040a8aa3772dbb2fd4614a4a8b2 Mon Sep 17 00:00:00 2001 From: Christoph Schlosser <2466365+cschlosser@users.noreply.github.com> Date: Fri, 30 Apr 2021 16:03:47 +0200 Subject: Use Github actions instead of travis and appveyor (#216) * Switch to GH workflow * Use tslint action * Add build matrix * Run test stage * Disable ubuntu test run due to bug in vscode * Publish coverage on macOS * Remove istanbul * codecov action * Move nyc config to nycrc * Add CD workflow * Remove old publishing script --- src/test/index.ts | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'src/test/index.ts') diff --git a/src/test/index.ts b/src/test/index.ts index 89f953b..2ae8633 100644 --- a/src/test/index.ts +++ b/src/test/index.ts @@ -6,25 +6,6 @@ function setupNyc() { const NYC = require("nyc"); // create an nyc instance, config here is the same as your package.json const nyc = new NYC({ - cache: false, - cwd: path.join(__dirname, "..", ".."), - exclude: [ - "**/**.test.js", - ], - extension: [ - ".ts", - ".tsx", - ], - hookRequire: true, - hookRunInContext: true, - hookRunInThisContext: true, - instrument: true, - reporter: ["text", "lcov", "cobertura"], - require: [ - "ts-node/register", - "source-map-support/register", - ], - sourceMap: true, }); nyc.reset(); nyc.wrap(); -- cgit v1.2.3