ripplo 0.1.0 → 0.1.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 (3) hide show
  1. package/README.md +10 -13
  2. package/dist/index.js +86 -109
  3. 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 | Description |
77
- | ---------------------------- | -------------------------------------- |
78
- | `ripplo` | Launch the interactive dashboard |
79
- | `ripplo run [slugs..]` | Run tests in parallel |
80
- | `ripplo lint [slugs..]` | Compile and lint workflows |
81
- | `ripplo list` | List all tests with status |
82
- | `ripplo doctor` | Check project health |
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.ts # Test data setup/teardown
95
- └── workflows/ # One file per user flow
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()`: