@oclif/test 1.2.5 → 1.2.9

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.
package/README.md CHANGED
@@ -6,7 +6,6 @@ test helpers for oclif components
6
6
  [![Version](https://img.shields.io/npm/v/@oclif/test.svg)](https://npmjs.org/package/@oclif/test)
7
7
  [![CircleCI](https://circleci.com/gh/oclif/test/tree/master.svg?style=svg)](https://circleci.com/gh/oclif/test/tree/master)
8
8
  [![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/oclif/test?branch=master&svg=true)](https://ci.appveyor.com/project/heroku/test/branch/master)
9
- [![Codecov](https://codecov.io/gh/oclif/test/branch/master/graph/badge.svg)](https://codecov.io/gh/oclif/test)
10
9
  [![Known Vulnerabilities](https://snyk.io/test/npm/@oclif/test/badge.svg)](https://snyk.io/test/npm/@oclif/test)
11
10
  [![Downloads/week](https://img.shields.io/npm/dw/@oclif/test.svg)](https://npmjs.org/package/@oclif/test)
12
11
  [![License](https://img.shields.io/npm/l/@oclif/test.svg)](https://github.com/oclif/test/blob/master/package.json)
package/lib/command.js CHANGED
@@ -1,22 +1,24 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const load_config_1 = require("./load-config");
4
+ const castArray = (input) => {
5
+ if (input === undefined)
6
+ return [];
7
+ return Array.isArray(input) ? input : [input];
8
+ };
4
9
  function command(args, opts = {}) {
5
10
  return {
6
11
  async run(ctx) {
12
+ // eslint-disable-next-line require-atomic-updates
7
13
  if (!ctx.config || opts.reset)
8
14
  ctx.config = await load_config_1.loadConfig(opts).run({});
9
15
  args = castArray(args);
10
- let [id, ...extra] = args;
16
+ const [id, ...extra] = args;
17
+ // eslint-disable-next-line require-atomic-updates
11
18
  ctx.expectation = ctx.expectation || `runs ${args.join(' ')}`;
12
19
  await ctx.config.runHook('init', { id, argv: extra });
13
20
  await ctx.config.runCommand(id, extra);
14
- }
21
+ },
15
22
  };
16
23
  }
17
24
  exports.command = command;
18
- const castArray = (input) => {
19
- if (input === undefined)
20
- return [];
21
- return Array.isArray(input) ? input : [input];
22
- };
package/lib/exit.d.ts CHANGED
@@ -7,7 +7,7 @@ declare const _default: (code?: number) => {
7
7
  /**
8
8
  * ensures that a oclif command or hook exits
9
9
  *
10
- * @param code - expected code
10
+ * @param {number} code expected code
11
11
  * @default 0
12
12
  */
13
13
  export default _default;
package/lib/exit.js CHANGED
@@ -1,10 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const chai_1 = require("chai");
4
+ // eslint-disable-next-line valid-jsdoc
4
5
  /**
5
6
  * ensures that a oclif command or hook exits
6
7
  *
7
- * @param code - expected code
8
+ * @param {number} code expected code
8
9
  * @default 0
9
10
  */
10
11
  exports.default = (code = 0) => ({
package/lib/hook.d.ts CHANGED
@@ -14,7 +14,7 @@ declare const _default: (event: string, hookOpts?: object, options?: loadConfig.
14
14
  * expect(output.stdout).to.contain('this output')
15
15
  * })
16
16
  *
17
- * @param event - hook to run
18
- * @param hookOpts - options to pass to hook. Config object will be passed automatically.
17
+ * @param {string} event hook to run
18
+ * @param {object} hookOpts options to pass to hook. Config object will be passed automatically.
19
19
  */
20
20
  export default _default;
package/lib/hook.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const load_config_1 = require("./load-config");
4
+ // eslint-disable-next-line valid-jsdoc
4
5
  /**
5
6
  * tests a oclif hook
6
7
  *
@@ -9,16 +10,18 @@ const load_config_1 = require("./load-config");
9
10
  * expect(output.stdout).to.contain('this output')
10
11
  * })
11
12
  *
12
- * @param event - hook to run
13
- * @param hookOpts - options to pass to hook. Config object will be passed automatically.
13
+ * @param {string} event hook to run
14
+ * @param {object} hookOpts options to pass to hook. Config object will be passed automatically.
14
15
  */
15
16
  exports.default = (event, hookOpts = {}, options = {}) => ({
16
17
  async run(ctx) {
17
18
  if (!event)
18
19
  throw new Error('no hook provided');
20
+ // eslint-disable-next-line require-atomic-updates
19
21
  if (!ctx.config)
20
22
  ctx.config = await load_config_1.loadConfig(options).run({});
23
+ // eslint-disable-next-line require-atomic-updates
21
24
  ctx.expectation = ctx.expectation || `runs ${event} hook`;
22
25
  await ctx.config.runHook(event, hookOpts || {});
23
- }
26
+ },
24
27
  });
package/lib/index.d.ts CHANGED
@@ -4,17 +4,17 @@ import { command } from './command';
4
4
  import { loadConfig } from './load-config';
5
5
  export declare const test: FancyTypes.Base<FancyTypes.Context, {
6
6
  skip: {
7
- output: {};
7
+ output: unknown;
8
8
  args: [];
9
9
  };
10
10
  } & {
11
11
  only: {
12
- output: {};
12
+ output: unknown;
13
13
  args: [];
14
14
  };
15
15
  } & {
16
16
  retries: {
17
- output: {};
17
+ output: unknown;
18
18
  args: [number];
19
19
  };
20
20
  } & {
@@ -28,7 +28,7 @@ export declare const test: FancyTypes.Base<FancyTypes.Context, {
28
28
  };
29
29
  } & {
30
30
  env: {
31
- output: {};
31
+ output: unknown;
32
32
  args: [{
33
33
  [k: string]: string | null | undefined;
34
34
  }, (FancyTypes.EnvOptions | undefined)?];
@@ -38,11 +38,11 @@ export declare const test: FancyTypes.Base<FancyTypes.Context, {
38
38
  output: {
39
39
  stubs: any[];
40
40
  };
41
- args: any[];
41
+ args: [any, any, () => any];
42
42
  };
43
43
  } & {
44
44
  stdin: {
45
- output: {};
45
+ output: unknown;
46
46
  args: [string, (number | undefined)?];
47
47
  };
48
48
  } & {
@@ -1,6 +1,8 @@
1
1
  import * as Config from '@oclif/config';
2
2
  /**
3
3
  * loads CLI plugin/multi config
4
+ * @param {loadConfig.Options} opts options
5
+ * @return {Promise<Config.IConfig>} config
4
6
  */
5
7
  export declare function loadConfig(opts?: loadConfig.Options): {
6
8
  run(ctx: {
@@ -3,13 +3,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Config = require("@oclif/config");
4
4
  /**
5
5
  * loads CLI plugin/multi config
6
+ * @param {loadConfig.Options} opts options
7
+ * @return {Promise<Config.IConfig>} config
6
8
  */
7
9
  function loadConfig(opts = {}) {
8
10
  return {
9
11
  async run(ctx) {
10
12
  ctx.config = await Config.load(opts.root || loadConfig.root);
11
13
  return ctx.config;
12
- }
14
+ },
13
15
  };
14
16
  }
15
17
  exports.loadConfig = loadConfig;
package/package.json CHANGED
@@ -1,26 +1,28 @@
1
1
  {
2
2
  "name": "@oclif/test",
3
3
  "description": "test helpers for oclif components",
4
- "version": "1.2.5",
4
+ "version": "1.2.9",
5
5
  "author": "Jeff Dickey @jdxcode",
6
6
  "bugs": "https://github.com/oclif/test/issues",
7
7
  "dependencies": {
8
- "fancy-test": "^1.4.3"
8
+ "fancy-test": "^1.4.10"
9
9
  },
10
10
  "devDependencies": {
11
- "@oclif/command": "^1.5.10",
12
- "@oclif/config": "^1.12.6",
13
- "@oclif/errors": "^1.2.2",
14
- "@oclif/tslint": "^3.1.1",
11
+ "@oclif/command": "^1.8.9",
12
+ "@oclif/config": "^1.18.2",
13
+ "@oclif/errors": "^1.3.5",
15
14
  "@types/chai": "^4.1.7",
16
- "@types/mocha": "^5.2.5",
17
- "@types/node": "^10.12.24",
15
+ "@types/mocha": "^8.0.0",
16
+ "@types/node": "^14.0.14",
18
17
  "chai": "^4.2.0",
19
- "globby": "^9.0.0",
20
- "mocha": "^5.2.0",
21
- "ts-node": "^8.0.2",
22
- "tslint": "^5.12.1",
23
- "typescript": "3.3.3"
18
+ "eslint": "^7.32.0",
19
+ "eslint-config-oclif": "^3.1.2",
20
+ "eslint-config-oclif-typescript": "^0.2.0",
21
+ "globby": "^11.0.1",
22
+ "mocha": "^8.4.0",
23
+ "nock": "^13.2.1",
24
+ "ts-node": "^9.0.0",
25
+ "typescript": "3.8.3"
24
26
  },
25
27
  "engines": {
26
28
  "node": ">=8.0.0"
@@ -37,10 +39,11 @@
37
39
  "repository": "oclif/test",
38
40
  "scripts": {
39
41
  "build": "rm -rf lib && tsc",
40
- "lint": "tsc -p test --noEmit && tslint -p test -t stylish",
41
- "posttest": "yarn run lint",
42
+ "lint": "eslint . --ext .ts --config .eslintrc",
43
+ "posttest": "yarn lint",
42
44
  "prepublishOnly": "yarn run build",
43
- "test": "mocha --forbid-only \"test/**/*.test.ts\""
45
+ "test": "mocha --forbid-only \"test/**/*.test.ts\"",
46
+ "pretest": "yarn build --noEmit && tsc -p test --noEmit"
44
47
  },
45
48
  "types": "lib/index.d.ts"
46
49
  }
package/CHANGELOG.md DELETED
@@ -1,571 +0,0 @@
1
- ## [1.2.2](https://github.com/oclif/test/compare/v1.2.1...v1.2.2) (2018-10-13)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * remove greenkeeper badge ([35730ff](https://github.com/oclif/test/commit/35730ff))
7
-
8
- ## [1.2.1](https://github.com/oclif/test/compare/v1.2.0...v1.2.1) (2018-09-14)
9
-
10
-
11
- ### Bug Fixes
12
-
13
- * require arguments to hook and command ([38982b5](https://github.com/oclif/test/commit/38982b5))
14
-
15
- # [1.2.0](https://github.com/oclif/test/compare/9af539d38f45f813f825a918baebfee17f9440dc...v1.2.0) (2018-08-17)
16
-
17
-
18
- ### Features
19
-
20
- * typescript 3.0 ([08c44ba](https://github.com/oclif/test/commit/08c44ba))
21
-
22
- <a name="1.1.0"></a>
23
- # [1.1.0](https://github.com/oclif/test/compare/bb2466b47bdb57e7852c15f3d8369c296a148db3...v1.1.0) (2018-06-14)
24
-
25
-
26
- ### Features
27
-
28
- * updated fancy-test ([9af539d](https://github.com/oclif/test/commit/9af539d))
29
-
30
- <a name="1.0.9"></a>
31
- ## [1.0.9](https://github.com/oclif/test/compare/a5beadfcd2868abf6680ab1923157fc272e3583d...v1.0.9) (2018-06-01)
32
-
33
-
34
- ### Bug Fixes
35
-
36
- * updated deps ([bb2466b](https://github.com/oclif/test/commit/bb2466b))
37
-
38
- <a name="1.0.8"></a>
39
- ## [1.0.8](https://github.com/oclif/test/compare/18433ffcb770fcb56a51040419b1a6287ddc686c...v1.0.8) (2018-06-01)
40
-
41
-
42
- ### Bug Fixes
43
-
44
- * updated deps ([a5beadf](https://github.com/oclif/test/commit/a5beadf))
45
-
46
- <a name="1.0.7"></a>
47
- ## [1.0.7](https://github.com/oclif/test/compare/1073eb5982d805f92a4c0399cd18ae61576c0e3d...v1.0.7) (2018-06-01)
48
-
49
-
50
- ### Bug Fixes
51
-
52
- * bump deps ([18433ff](https://github.com/oclif/test/commit/18433ff))
53
-
54
- <a name="1.0.6"></a>
55
- ## [1.0.6](https://github.com/oclif/test/compare/90e407f6cefec2416f9cf33b572db297d6901769...v1.0.6) (2018-05-01)
56
-
57
-
58
- ### Bug Fixes
59
-
60
- * updated fancy-test ([1073eb5](https://github.com/oclif/test/commit/1073eb5))
61
-
62
- <a name="1.0.5"></a>
63
- ## [1.0.5](https://github.com/oclif/test/compare/b30b892e91729769bf2e991ca5922926a7add90b...v1.0.5) (2018-04-18)
64
-
65
-
66
- ### Bug Fixes
67
-
68
- * updated deps ([90e407f](https://github.com/oclif/test/commit/90e407f))
69
-
70
- <a name="1.0.4"></a>
71
- ## [1.0.4](https://github.com/oclif/test/compare/97986a4ea3ac8d703d2c755a29dd9282bd2eb4b1...v1.0.4) (2018-04-06)
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * fixed exit ([b30b892](https://github.com/oclif/test/commit/b30b892))
77
-
78
- <a name="1.0.3"></a>
79
- ## [1.0.3](https://github.com/oclif/test/compare/ad5d869d3ca7afb926f0fbbefc8d92b6c4f1a7ba...v1.0.3) (2018-04-06)
80
-
81
-
82
- ### Bug Fixes
83
-
84
- * fixed exit ([97986a4](https://github.com/oclif/test/commit/97986a4))
85
-
86
- <a name="1.0.2"></a>
87
- ## [1.0.2](https://github.com/oclif/test/compare/65323ebfc55d4c13fb9e4bef2b961a4bc8065a4b...v1.0.2) (2018-04-06)
88
-
89
-
90
- ### Bug Fixes
91
-
92
- * updated fancy-test ([ad5d869](https://github.com/oclif/test/commit/ad5d869))
93
-
94
- <a name="1.0.1"></a>
95
- ## [1.0.1](https://github.com/oclif/test/compare/v1.0.0...v1.0.1) (2018-02-13)
96
-
97
-
98
- ### Bug Fixes
99
-
100
- * updated deps ([65323eb](https://github.com/oclif/test/commit/65323eb))
101
-
102
- <a name="0.10.16"></a>
103
- ## [0.10.16](https://github.com/oclif/test/compare/e3693460c4c91ee8e0f932b28304faaf8ce2f523...v0.10.16) (2018-02-13)
104
-
105
-
106
- ### Bug Fixes
107
-
108
- * updated deps ([76353b9](https://github.com/oclif/test/commit/76353b9))
109
-
110
- <a name="0.10.15"></a>
111
- ## [0.10.15](https://github.com/anycli/test/compare/4b33a6cbc4544870f49b5dc5b7625bf388b5e083...v0.10.15) (2018-02-07)
112
-
113
-
114
- ### Bug Fixes
115
-
116
- * updated command ([18ca930](https://github.com/anycli/test/commit/18ca930))
117
-
118
- <a name="0.10.14"></a>
119
- ## [0.10.14](https://github.com/anycli/test/compare/25f527145b8548083896f4c440cae92219ddef6c...v0.10.14) (2018-02-07)
120
-
121
-
122
- ### Bug Fixes
123
-
124
- * async ([4b33a6c](https://github.com/anycli/test/commit/4b33a6c))
125
-
126
- <a name="0.10.13"></a>
127
- ## [0.10.13](https://github.com/anycli/test/compare/123a4cf6c04f1e0d86a999b8848b3034174a5c86...v0.10.13) (2018-02-07)
128
-
129
-
130
- ### Bug Fixes
131
-
132
- * run init hook ([25f5271](https://github.com/anycli/test/commit/25f5271))
133
- * run init hook ([d902662](https://github.com/anycli/test/commit/d902662))
134
-
135
- <a name="0.10.12"></a>
136
- ## [0.10.12](https://github.com/anycli/test/compare/e807e1997757ccf16828433cab2ea29a5a8b97be...v0.10.12) (2018-02-07)
137
-
138
-
139
- ### Bug Fixes
140
-
141
- * updated config ([123a4cf](https://github.com/anycli/test/commit/123a4cf))
142
-
143
- <a name="0.10.11"></a>
144
- ## [0.10.11](https://github.com/anycli/test/compare/61c267f0ad0e76ce08b1015cfe76d80769bf4440...v0.10.11) (2018-02-05)
145
-
146
-
147
- ### Bug Fixes
148
-
149
- * updated with config/command changes ([e807e19](https://github.com/anycli/test/commit/e807e19))
150
-
151
- <a name="0.10.10"></a>
152
- ## [0.10.10](https://github.com/anycli/test/compare/6979084b79f1c39ee6b8c2da201f70d6f0077faf...v0.10.10) (2018-02-05)
153
-
154
-
155
- ### Bug Fixes
156
-
157
- * remove lodash ([61c267f](https://github.com/anycli/test/commit/61c267f))
158
-
159
- <a name="0.10.9"></a>
160
- ## [0.10.9](https://github.com/anycli/test/compare/c1b6e1aa3f5fe2f3ea400a5dda0fe4734e39595c...v0.10.9) (2018-02-03)
161
-
162
-
163
- ### Bug Fixes
164
-
165
- * put reset flag on loadConfig ([6979084](https://github.com/anycli/test/commit/6979084))
166
-
167
- <a name="0.10.8"></a>
168
- ## [0.10.8](https://github.com/anycli/test/compare/83bdc23f9565d74eac32bc28b3a756443b2464dc...v0.10.8) (2018-02-03)
169
-
170
-
171
- ### Bug Fixes
172
-
173
- * export command ([c1b6e1a](https://github.com/anycli/test/commit/c1b6e1a))
174
-
175
- <a name="0.10.7"></a>
176
- ## [0.10.7](https://github.com/anycli/test/compare/54303a06893c4232824e7e91f66464bd4c999ee8...v0.10.7) (2018-02-03)
177
-
178
-
179
- ### Bug Fixes
180
-
181
- * bump config ([83bdc23](https://github.com/anycli/test/commit/83bdc23))
182
- * clear plugincache ([61ec050](https://github.com/anycli/test/commit/61ec050))
183
-
184
- <a name="0.10.6"></a>
185
- ## [0.10.6](https://github.com/anycli/test/compare/fa184dab258fdb91ff1799c91853c1a8fc140355...v0.10.6) (2018-02-03)
186
-
187
-
188
- ### Bug Fixes
189
-
190
- * fixed loadConfig with hooks ([54303a0](https://github.com/anycli/test/commit/54303a0))
191
-
192
- <a name="0.10.5"></a>
193
- ## [0.10.5](https://github.com/anycli/test/compare/232226999009377aca4e11d4be0b42292178d8ae...v0.10.5) (2018-02-03)
194
-
195
-
196
- ### Bug Fixes
197
-
198
- * updated to work with new config/command ([fa184da](https://github.com/anycli/test/commit/fa184da))
199
-
200
- <a name="0.10.4"></a>
201
- ## [0.10.4](https://github.com/anycli/test/compare/07edc1c42f32ba3ecc534f4bea0f2db61b0d9955...v0.10.4) (2018-02-02)
202
-
203
-
204
- ### Bug Fixes
205
-
206
- * updated deps ([2322269](https://github.com/anycli/test/commit/2322269))
207
-
208
- <a name="0.10.3"></a>
209
- ## [0.10.3](https://github.com/anycli/test/compare/5fd5b9162030fe7c140e9084e016f15b2fcf20f5...v0.10.3) (2018-02-02)
210
-
211
-
212
- ### Bug Fixes
213
-
214
- * updated deps ([07edc1c](https://github.com/anycli/test/commit/07edc1c))
215
-
216
- <a name="0.10.2"></a>
217
- ## [0.10.2](https://github.com/anycli/test/compare/f69f12493fdd456dd822d70f9698f82cbbc7c90c...v0.10.2) (2018-02-01)
218
-
219
-
220
- ### Bug Fixes
221
-
222
- * lazy load engine ([5fd5b91](https://github.com/anycli/test/commit/5fd5b91))
223
-
224
- <a name="0.10.1"></a>
225
- ## [0.10.1](https://github.com/anycli/test/compare/ac8b8ad827acddd1f06b2f47941543d1497e9f59...v0.10.1) (2018-02-01)
226
-
227
-
228
- ### Bug Fixes
229
-
230
- * updated engine ([f69f124](https://github.com/anycli/test/commit/f69f124))
231
-
232
- <a name="0.10.0"></a>
233
- # [0.10.0](https://github.com/anycli/test/compare/815def79357243b1f4d572609d2a0fe3a795be8c...v0.10.0) (2018-01-31)
234
-
235
-
236
- ### Features
237
-
238
- * added loadEngine ([ac8b8ad](https://github.com/anycli/test/commit/ac8b8ad))
239
-
240
- <a name="0.9.20"></a>
241
- ## [0.9.20](https://github.com/anycli/test/compare/v0.9.19...v0.9.20) (2018-01-31)
242
-
243
-
244
- ### Bug Fixes
245
-
246
- * anycli rename ([815def7](https://github.com/anycli/test/commit/815def7))
247
- * anycli rename ([ca39cc9](https://github.com/anycli/test/commit/ca39cc9))
248
-
249
- <a name="0.9.19"></a>
250
- ## [0.9.19](https://github.com/dxcli/test/compare/46ce619516b71b5b285090f31a151119d9d93fce...v0.9.19) (2018-01-29)
251
-
252
-
253
- ### Bug Fixes
254
-
255
- * updated engine ([6d396b1](https://github.com/dxcli/test/commit/6d396b1))
256
-
257
- <a name="0.9.18"></a>
258
- ## [0.9.18](https://github.com/dxcli/test/compare/6c0a79775313da04ac3df1520af1144426deebd3...v0.9.18) (2018-01-28)
259
-
260
-
261
- ### Bug Fixes
262
-
263
- * remove peer dep ([46ce619](https://github.com/dxcli/test/commit/46ce619))
264
-
265
- <a name="0.9.17"></a>
266
- ## [0.9.17](https://github.com/dxcli/test/compare/11b76681d9fbb4b5519f08b097a8abf38b277bd1...v0.9.17) (2018-01-28)
267
-
268
-
269
- ### Bug Fixes
270
-
271
- * add [@dxcli](https://github.com/dxcli)/command ([6c0a797](https://github.com/dxcli/test/commit/6c0a797))
272
- * fixing example publishing ([adee5fe](https://github.com/dxcli/test/commit/adee5fe))
273
-
274
- <a name="0.9.16"></a>
275
- ## [0.9.16](https://github.com/dxcli/test/compare/43dfa2997d4d3889d6a5af0300a1310f5f727eb2...v0.9.16) (2018-01-28)
276
-
277
-
278
- ### Bug Fixes
279
-
280
- * fixed config loading ([11b7668](https://github.com/dxcli/test/commit/11b7668))
281
-
282
- <a name="0.9.15"></a>
283
- ## [0.9.15](https://github.com/dxcli/test/compare/1c361aa61eabdd02a887339d656eb06f86244a4c...v0.9.15) (2018-01-28)
284
-
285
-
286
- ### Bug Fixes
287
-
288
- * updated fancy-test ([43dfa29](https://github.com/dxcli/test/commit/43dfa29))
289
-
290
- <a name="0.9.14"></a>
291
- ## [0.9.14](https://github.com/dxcli/test/compare/1c9f8a395b48bf0489afb3badc5eef02dd9acb36...v0.9.14) (2018-01-28)
292
-
293
-
294
- ### Bug Fixes
295
-
296
- * ran generator ([1c361aa](https://github.com/dxcli/test/commit/1c361aa))
297
-
298
- <a name="0.9.13"></a>
299
- ## [0.9.13](https://github.com/dxcli/test/compare/9e620edba0962ffb08182f166cff6c6db0c759ce...v0.9.13) (2018-01-28)
300
-
301
-
302
- ### Bug Fixes
303
-
304
- * ran generator ([1c9f8a3](https://github.com/dxcli/test/commit/1c9f8a3))
305
-
306
- <a name="0.9.12"></a>
307
- ## [0.9.12](https://github.com/dxcli/dev-test/compare/d800eb1e0453b4dc928e103ad8384b7a4285d596...v0.9.12) (2018-01-27)
308
-
309
-
310
- ### Bug Fixes
311
-
312
- * updated deps ([11e18c0](https://github.com/dxcli/dev-test/commit/11e18c0))
313
-
314
- <a name="0.9.11"></a>
315
- ## [0.9.11](https://github.com/dxcli/dev-test/compare/d4a55140333f0cc4ba0601b975dcd2f8f746c739...v0.9.11) (2018-01-27)
316
-
317
-
318
- ### Bug Fixes
319
-
320
- * move everything to devDependencies to use [@dxcli](https://github.com/dxcli)/dev instead ([d800eb1](https://github.com/dxcli/dev-test/commit/d800eb1))
321
-
322
- <a name="0.9.10"></a>
323
- ## [0.9.10](https://github.com/dxcli/dev-test/compare/2473c2f8dbc9fb30aa49d7319cd8c0367a030e5b...v0.9.10) (2018-01-27)
324
-
325
-
326
- ### Bug Fixes
327
-
328
- * added types ([d4a5514](https://github.com/dxcli/dev-test/commit/d4a5514))
329
-
330
- <a name="0.9.9"></a>
331
- ## [0.9.9](https://github.com/dxcli/dev-test/compare/7c2f91a8ac9d82873fe2661c9b8a075b9a04791e...v0.9.9) (2018-01-27)
332
-
333
-
334
- ### Bug Fixes
335
-
336
- * updated deps ([2473c2f](https://github.com/dxcli/dev-test/commit/2473c2f))
337
-
338
- <a name="0.9.8"></a>
339
- ## [0.9.8](https://github.com/dxcli/dev-test/compare/46b00dbd6ef575ccc35caa31580beb636656c595...v0.9.8) (2018-01-26)
340
-
341
-
342
- ### Bug Fixes
343
-
344
- * updated deps ([7c2f91a](https://github.com/dxcli/dev-test/commit/7c2f91a))
345
-
346
- <a name="0.9.7"></a>
347
- ## [0.9.7](https://github.com/dxcli/dev-test/compare/319439d66a91a6f733cf67f30fc9ba9730cbd4f0...v0.9.7) (2018-01-26)
348
-
349
-
350
- ### Bug Fixes
351
-
352
- * updated fancy-test ([46b00db](https://github.com/dxcli/dev-test/commit/46b00db))
353
-
354
- <a name="0.9.6"></a>
355
- ## [0.9.6](https://github.com/dxcli/dev-test/compare/b930f9d913b48981781e064317869f932e16730f...v0.9.6) (2018-01-26)
356
-
357
-
358
- ### Bug Fixes
359
-
360
- * updated fancy-test ([319439d](https://github.com/dxcli/dev-test/commit/319439d))
361
-
362
- <a name="0.9.5"></a>
363
- ## [0.9.5](https://github.com/dxcli/dev-test/compare/ed2562de6b7073e6a9db4f051aeec925d2cca539...v0.9.5) (2018-01-26)
364
-
365
-
366
- ### Bug Fixes
367
-
368
- * updated fancy-test ([b930f9d](https://github.com/dxcli/dev-test/commit/b930f9d))
369
-
370
- <a name="0.9.4"></a>
371
- ## [0.9.4](https://github.com/dxcli/dev-test/compare/639c410f45e9a361417acba72586fe6e4d294fe5...v0.9.4) (2018-01-26)
372
-
373
-
374
- ### Bug Fixes
375
-
376
- * updated fancy-test ([ed2562d](https://github.com/dxcli/dev-test/commit/ed2562d))
377
-
378
- <a name="0.9.3"></a>
379
- ## [0.9.3](https://github.com/dxcli/dev-test/compare/f0f450e8ecfa1600ba329f30811a10432e56f5d0...v0.9.3) (2018-01-26)
380
-
381
-
382
- ### Bug Fixes
383
-
384
- * updated fancy-test ([39078f0](https://github.com/dxcli/dev-test/commit/39078f0))
385
-
386
- <a name="0.9.2"></a>
387
- ## [0.9.2](https://github.com/dxcli/dev-test/compare/275ae1e49fc427d9e9093f931ba9668ecddb5d0b...v0.9.2) (2018-01-25)
388
-
389
-
390
- ### Bug Fixes
391
-
392
- * added some exports ([f0f450e](https://github.com/dxcli/dev-test/commit/f0f450e))
393
- * updated fancy-mocha ([8420ab2](https://github.com/dxcli/dev-test/commit/8420ab2))
394
- * updated fancy-mocha ([d78793e](https://github.com/dxcli/dev-test/commit/d78793e))
395
-
396
- <a name="0.9.1"></a>
397
- ## [0.9.1](https://github.com/dxcli/dev-test/compare/89d55b19ebdd7c04daad9c5156b4b62fb36d22ce...v0.9.1) (2018-01-25)
398
-
399
-
400
- ### Bug Fixes
401
-
402
- * fix defaulting root ([275ae1e](https://github.com/dxcli/dev-test/commit/275ae1e))
403
-
404
- <a name="0.9.0"></a>
405
- # [0.9.0](https://github.com/dxcli/dev-test/compare/b7a1d2557905ffd8b59ab1333d236b5e768301e3...v0.9.0) (2018-01-25)
406
-
407
-
408
- ### Features
409
-
410
- * use fancy-mocha ([89d55b1](https://github.com/dxcli/dev-test/commit/89d55b1))
411
-
412
- <a name="0.8.0"></a>
413
- # [0.8.0](https://github.com/dxcli/dev-test/compare/036ec315486d5caf3af301df37f9c252ecb64fe4...v0.8.0) (2018-01-21)
414
-
415
-
416
- ### Features
417
-
418
- * use fancy-mocha ([b7a1d25](https://github.com/dxcli/dev-test/commit/b7a1d25))
419
-
420
- <a name="0.7.0"></a>
421
- # [0.7.0](https://github.com/dxcli/dev-test/compare/5b214ad519747c8e999dae7ae809b680c4373f63...v0.7.0) (2018-01-20)
422
-
423
-
424
- ### Features
425
-
426
- * added error to hook callback ([036ec31](https://github.com/dxcli/dev-test/commit/036ec31))
427
-
428
- <a name="0.6.1"></a>
429
- ## [0.6.1](https://github.com/dxcli/dev-test/compare/e5f9a87977d3d7cc901297874b0135def95362d2...v0.6.1) (2018-01-20)
430
-
431
-
432
- ### Bug Fixes
433
-
434
- * better exit error handling ([5b214ad](https://github.com/dxcli/dev-test/commit/5b214ad))
435
-
436
- <a name="0.6.0"></a>
437
- # [0.6.0](https://github.com/dxcli/dev-test/compare/9606dddb2a1420ee0384b27f5c84c3c73d2e161e...v0.6.0) (2018-01-20)
438
-
439
-
440
- ### Features
441
-
442
- * added testHook callback ([e5f9a87](https://github.com/dxcli/dev-test/commit/e5f9a87))
443
-
444
- <a name="0.5.2"></a>
445
- ## [0.5.2](https://github.com/dxcli/dev-test/compare/b578460b88d0c4079d4749ecaaf2a35796715d3c...v0.5.2) (2018-01-20)
446
-
447
-
448
- ### Bug Fixes
449
-
450
- * updated deps ([3dabf24](https://github.com/dxcli/dev-test/commit/3dabf24))
451
-
452
- <a name="0.5.1"></a>
453
- ## [0.5.1](https://github.com/dxcli/dev-test/compare/016ca5eba672058d70bf9bff6df64653ac29f3cd...v0.5.1) (2018-01-20)
454
-
455
-
456
- ### Bug Fixes
457
-
458
- * show all args ([b578460](https://github.com/dxcli/dev-test/commit/b578460))
459
-
460
- <a name="0.5.0"></a>
461
- # [0.5.0](https://github.com/dxcli/dev-test/compare/0ccdabed9721ba044e8d5a75db391c0f126d6e54...v0.5.0) (2018-01-20)
462
-
463
-
464
- ### Features
465
-
466
- * added testCommand callback ([016ca5e](https://github.com/dxcli/dev-test/commit/016ca5e))
467
-
468
- <a name="0.4.4"></a>
469
- ## [0.4.4](https://github.com/dxcli/dev-test/compare/c9d091091f0faeb52d11fd3897c22de413634bd5...v0.4.4) (2018-01-20)
470
-
471
-
472
- ### Bug Fixes
473
-
474
- * bump engine ([0ccdabe](https://github.com/dxcli/dev-test/commit/0ccdabe))
475
-
476
- <a name="0.4.3"></a>
477
- ## [0.4.3](https://github.com/dxcli/dev-test/compare/306c3ee9d27460a56bf3be1d9f31ea8e14084a23...v0.4.3) (2018-01-20)
478
-
479
-
480
- ### Bug Fixes
481
-
482
- * exit code check ([c9d0910](https://github.com/dxcli/dev-test/commit/c9d0910))
483
-
484
- <a name="0.4.2"></a>
485
- ## [0.4.2](https://github.com/dxcli/dev-test/compare/28b9e3b1cde70174831a2d175f6d7c542e59fb72...v0.4.2) (2018-01-20)
486
-
487
-
488
- ### Bug Fixes
489
-
490
- * updated deps ([306c3ee](https://github.com/dxcli/dev-test/commit/306c3ee))
491
-
492
- <a name="0.4.1"></a>
493
- ## [0.4.1](https://github.com/dxcli/dev-test/compare/39bc87761d4cce79d38ed69a66592ac499d6347e...v0.4.1) (2018-01-20)
494
-
495
-
496
- ### Bug Fixes
497
-
498
- * added sourceMap ([e17e4aa](https://github.com/dxcli/dev-test/commit/e17e4aa))
499
- * updated dependencies ([28b9e3b](https://github.com/dxcli/dev-test/commit/28b9e3b))
500
-
501
- <a name="0.4.0"></a>
502
- # [0.4.0](https://github.com/dxcli/dev-test/compare/bbe7683a7e6eb0c27e387e9d085dae0f669fb867...v0.4.0) (2018-01-20)
503
-
504
-
505
- ### Features
506
-
507
- * added testHook ([39bc877](https://github.com/dxcli/dev-test/commit/39bc877))
508
-
509
- <a name="0.3.0"></a>
510
- # [0.3.0](https://github.com/dxcli/dev-test/compare/8ef663ff285bd3a65d2f8e6520a3b56ac8b48d7e...v0.3.0) (2018-01-20)
511
-
512
-
513
- ### Features
514
-
515
- * added testCommand ([bbe7683](https://github.com/dxcli/dev-test/commit/bbe7683))
516
-
517
- <a name="0.2.2"></a>
518
- ## [0.2.2](https://github.com/dxcli/dev-test/compare/6384b05e572a67a8ac9df47c2d1824015ada6e4a...v0.2.2) (2018-01-19)
519
-
520
-
521
- ### Bug Fixes
522
-
523
- * updated dependencies ([8ef663f](https://github.com/dxcli/dev-test/commit/8ef663f))
524
-
525
- <a name="0.2.1"></a>
526
- ## [0.2.1](https://github.com/dxcli/dev-test/compare/4d45e11aebd9a69549aefdc54fa15ebb2ddf24f0...v0.2.1) (2018-01-16)
527
-
528
-
529
- ### Bug Fixes
530
-
531
- * flush stdmock after tests ([6384b05](https://github.com/dxcli/dev-test/commit/6384b05))
532
-
533
- <a name="0.2.0"></a>
534
- # [0.2.0](https://github.com/dxcli/dev-test/compare/98bf3a1dd7346d4d8d71fa9c943dc2c23f0171ff...v0.2.0) (2018-01-16)
535
-
536
-
537
- ### Features
538
-
539
- * add chai-as-promised ([4d45e11](https://github.com/dxcli/dev-test/commit/4d45e11))
540
-
541
- <a name="0.1.2"></a>
542
- ## [0.1.2](https://github.com/dxcli/dev-test/compare/77aff3b2da0b9e72548d6584128dbe6bb56e39e4...v0.1.2) (2018-01-16)
543
-
544
-
545
- ### Bug Fixes
546
-
547
- * fixed it before/after filters ([98bf3a1](https://github.com/dxcli/dev-test/commit/98bf3a1))
548
-
549
- <a name="0.1.1"></a>
550
- ## [0.1.1](https://github.com/dxcli/dev-test/compare/d0c1e97a377cb47071d387ed38e2b905437c3d80...v0.1.1) (2018-01-16)
551
-
552
-
553
- ### Bug Fixes
554
-
555
- * ran generator ([77aff3b](https://github.com/dxcli/dev-test/commit/77aff3b))
556
-
557
- <a name="0.1.0"></a>
558
- # [0.1.0](https://github.com/dxcli/dev-test/compare/1994d4b85deedb04d87973b56e8fff359dd7dd31...v0.1.0) (2018-01-15)
559
-
560
-
561
- ### Features
562
-
563
- * added mock and improved std mocking ([d0c1e97](https://github.com/dxcli/dev-test/commit/d0c1e97))
564
-
565
- <a name="0.0.1"></a>
566
- ## [0.0.1](https://github.com/dxcli/dev-test/compare/16a7ac9e499c1b587bc6d42ee963cecdb5ce029c...v0.0.1) (2018-01-13)
567
-
568
-
569
- ### Bug Fixes
570
-
571
- * add [@dxcli](https://github.com/dxcli)/dev-nyc-config ([1994d4b](https://github.com/dxcli/dev-test/commit/1994d4b))