qfai 0.3.1 → 0.3.2
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 +1 -1
- package/assets/init/.qfai/specs/README.md +5 -5
- package/dist/cli/index.cjs +450 -241
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.mjs +422 -209
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.cjs +441 -232
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +420 -207
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -1
- /package/assets/init/.qfai/specs/{spec-001 → spec-0001}/delta.md +0 -0
- /package/assets/init/.qfai/specs/{spec-001 → spec-0001}/scenario.md +0 -0
- /package/assets/init/.qfai/specs/{spec-001 → spec-0001}/spec.md +0 -0
package/README.md
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
## 置くべきファイル
|
|
6
6
|
|
|
7
|
-
- `spec-
|
|
8
|
-
- `spec-
|
|
9
|
-
- `spec-
|
|
7
|
+
- `spec-0001/spec.md`(必須)
|
|
8
|
+
- `spec-0001/delta.md`(必須)
|
|
9
|
+
- `spec-0001/scenario.md`(必須・Gherkin)
|
|
10
10
|
|
|
11
|
-
> `spec-
|
|
11
|
+
> `spec-0001` は **4桁連番**。Spec ID も **4桁(SPEC-0001)** です。
|
|
12
12
|
|
|
13
13
|
## Spec(spec.md)最小例
|
|
14
14
|
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
## Scenario(scenario.md)最小要件
|
|
39
39
|
|
|
40
40
|
- **Gherkin 記法**(Given/When/Then)
|
|
41
|
-
- `@SPEC-xxxx` は Feature
|
|
41
|
+
- `@SPEC-xxxx` は Feature レベルに **ちょうど1つ**必要
|
|
42
42
|
- Scenario / Scenario Outline には `@SC-xxxx` が **ちょうど1つ**必要
|
|
43
43
|
- Scenario / Scenario Outline には `@BR-xxxx` が **1つ以上**必要
|
|
44
44
|
|