Skip to content

Commit d448ea8

Browse files
committed
Docs: Fix expert name typo in E2E.md
1 parent 79544fd commit d448ea8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

E2E.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $CLI status --help
3434

3535
```bash
3636
# Valid expert
37-
$CLI publish tick-tack-toe --dry-run
37+
$CLI publish tic-tac-toe --dry-run
3838

3939
# Invalid expert
4040
$CLI publish nonexistent --dry-run
@@ -69,10 +69,10 @@ $CLI tag expert@1.0.0
6969

7070
```bash
7171
# Nonexistent config
72-
$CLI publish tick-tack-toe --dry-run --config nonexistent.toml
72+
$CLI publish tic-tac-toe --dry-run --config nonexistent.toml
7373

7474
# No config in directory
75-
cd /tmp && $CLI publish tick-tack-toe --dry-run
75+
cd /tmp && $CLI publish tic-tac-toe --dry-run
7676
```
7777

7878
**Expected**: Error message indicating config file not found, exit code 1.
@@ -98,7 +98,7 @@ $CLI --help > /dev/null && echo "OK: --help"
9898
$CLI --version > /dev/null && echo "OK: --version"
9999

100100
echo "=== Publish Dry Run ==="
101-
$CLI publish tick-tack-toe --dry-run > /dev/null && echo "OK: publish dry-run"
101+
$CLI publish tic-tac-toe --dry-run > /dev/null && echo "OK: publish dry-run"
102102
$CLI publish nonexistent --dry-run 2>&1 && exit 1 || echo "OK: publish invalid expert"
103103

104104
echo "=== Argument Validation ==="
@@ -107,7 +107,7 @@ $CLI unpublish no-version --force 2>&1 && exit 1 || echo "OK: unpublish invalid
107107
$CLI status expert@1.0.0 invalid-status 2>&1 && exit 1 || echo "OK: status invalid value"
108108

109109
echo "=== Config Handling ==="
110-
$CLI publish tick-tack-toe --dry-run --config nonexistent.toml 2>&1 && exit 1 || echo "OK: nonexistent config"
110+
$CLI publish tic-tac-toe --dry-run --config nonexistent.toml 2>&1 && exit 1 || echo "OK: nonexistent config"
111111

112112
echo "All tests passed!"
113113
```

0 commit comments

Comments
 (0)