@storyous/test-utils 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # `testUtils`
2
2
 
3
+ Package for help with testing you app.
4
+ Creates api for test requesting, creates test database collection and mocked mailer.
5
+
3
6
  ## Usage
4
7
 
5
8
  ``` typescript
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "@storyous/test-utils",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/Storyous/mono-utils#readme",
6
6
  "license": "ISC",
7
7
  "main": "lib/testUtils.ts",
8
8
  "scripts": {
9
- "start": "tsc",
10
- "build": "tsc && npm publish"
9
+ "start": "tsc"
11
10
  },
12
11
  "mocha": {
13
12
  "recursive": true,
@@ -30,6 +29,11 @@
30
29
  "registry": "https://registry.npmjs.org/"
31
30
  },
32
31
  "dependencies": {
32
+ "@types/koa": "^2.13.4",
33
+ "@types/lodash": "^4.14.182",
34
+ "@types/mocha": "^9.1.1",
35
+ "@types/nodemailer": "^6.4.4",
36
+ "@types/supertest": "^2.0.12",
33
37
  "koa": "^2.13.4",
34
38
  "mocha": "^9.2.2",
35
39
  "mongodb": "^4.5.0",
@@ -38,5 +42,6 @@
38
42
  },
39
43
  "devDependencies": {
40
44
  "@storyous/mailer": "^1.0.0"
41
- }
45
+ },
46
+ "gitHead": "8932da29029ebd5040f2c69ef4c145183a89e569"
42
47
  }