ripplo 0.1.0 → 0.1.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 +10 -13
- package/dist/index.js +86 -109
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -73,15 +73,13 @@ This is the DSL your `.ripplo/` files use to define workflows and preconditions.
|
|
|
73
73
|
|
|
74
74
|
## Commands
|
|
75
75
|
|
|
76
|
-
| Command
|
|
77
|
-
|
|
|
78
|
-
| `ripplo`
|
|
79
|
-
| `ripplo run [
|
|
80
|
-
| `ripplo lint [
|
|
81
|
-
| `ripplo
|
|
82
|
-
| `ripplo
|
|
83
|
-
| `ripplo flake-detect <slug>` | Run a test N times to detect flakiness |
|
|
84
|
-
| `ripplo sync` | Sync tests to the dev session |
|
|
76
|
+
| Command | Description |
|
|
77
|
+
| -------------------------- | -------------------------------------- |
|
|
78
|
+
| `ripplo` | Launch the interactive dashboard |
|
|
79
|
+
| `ripplo run [ids..]` | Run tests in parallel |
|
|
80
|
+
| `ripplo lint [ids..]` | Compile and lint workflows |
|
|
81
|
+
| `ripplo doctor` | Check project health |
|
|
82
|
+
| `ripplo flake-detect <id>` | Run a test N times to detect flakiness |
|
|
85
83
|
|
|
86
84
|
## Project Structure
|
|
87
85
|
|
|
@@ -90,10 +88,9 @@ After setup, your project will have:
|
|
|
90
88
|
```
|
|
91
89
|
.ripplo/
|
|
92
90
|
├── ripplo.ts # Config: createRipplo({ projectId, appUrl, ... })
|
|
93
|
-
├── index.ts # Entry point
|
|
94
|
-
├── preconditions
|
|
95
|
-
└──
|
|
96
|
-
└── example.ts # Starter workflow
|
|
91
|
+
├── index.ts # Entry point — explicitly imports every precondition and test file
|
|
92
|
+
├── preconditions/ # Test data setup/teardown (add `import "./preconditions/<file>.js";` to index.ts)
|
|
93
|
+
└── tests/ # Test specs (add `import "./tests/<id>.js";` to index.ts)
|
|
97
94
|
```
|
|
98
95
|
|
|
99
96
|
Configuration lives in `ripplo.ts` via `createRipplo()`:
|