Removing the test placeholders

This commit is contained in:
svartalf
2020-01-26 15:02:04 +03:00
parent 1b5b840c59
commit 35fc20ed69
3 changed files with 3 additions and 10 deletions
-7
View File
@@ -1,7 +0,0 @@
describe('actions-rs/audit', () => {
beforeEach(() => {
})
it('Should do something', async () => {
});
});
+2 -2
View File
@@ -5,7 +5,7 @@ module.exports = {
testMatch: ['**/*.test.ts'], testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner', testRunner: 'jest-circus/runner',
transform: { transform: {
'^.+\\.ts$': 'ts-jest' "\\.(ts|js)x?$": "ts-jest"
}, },
verbose: true verbose: true
} }
+1 -1
View File
@@ -11,7 +11,7 @@
"scripts": { "scripts": {
"build": "ncc build src/main.ts --minify", "build": "ncc build src/main.ts --minify",
"watch": "ncc build src/main.ts --watch --minify", "watch": "ncc build src/main.ts --watch --minify",
"test": "jest", "test": "jest --passWithNoTests",
"format": "prettier --write 'src/**/*.{js,ts,tsx}'", "format": "prettier --write 'src/**/*.{js,ts,tsx}'",
"refresh": "rm -rf ./lib/* && npm run-script build", "refresh": "rm -rf ./lib/* && npm run-script build",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'" "lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'"