Skip to content

Commit f392b8f

Browse files
author
Simon Hofmann
committed
Initial commit - config stuff
1 parent 437dae2 commit f392b8f

7 files changed

+4785
-0
lines changed

.npmignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/lib
2+
tsconfig.json
3+
tslint.json
4+
.travis.yml
5+
.vscode
6+
.idea
7+
.github

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# secrets changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
6+
## 1.0.0
7+
8+
- Initial version which supports existing Sakuli v1 encrypted secrets

jest.config.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
preset: "ts-jest",
3+
testEnvironment: "node",
4+
collectCoverageFrom: [
5+
"index.ts",
6+
"lib/**/*.ts",
7+
"!lib/**/*.spec.ts",
8+
"!<rootDir>/node_modules/",
9+
"!<rootDir>/path/to/dir/"
10+
],
11+
testPathIgnorePatterns: [
12+
"/node_modules/",
13+
"/dist/"
14+
],
15+
testMatch: process.env.E2E_TEST ?
16+
[ "**/__tests__/?(e2e)/**/*.[jt]s?(x)", "**/?(*.)?(e2e.)+(spec|test).[jt]s?(x)" ] :
17+
[ "**/__tests__/!(e2e)/**/*.[jt]s?(x)", "**/!(*.e2e.*)+(spec|test).[jt]s?(x)" ]
18+
};

0 commit comments

Comments
 (0)