Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions HANDSON2.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ When you record a new test session, Smart Tests will return a session ID, which
Now, let's have Smart Tests select the best set of tests to run for this test session.

```
launchable subset --session $(cat session.txt) --get-tests-from-guess file > subset.txt
launchable subset --session $(cat session.txt) --use-case one-commit --get-tests-from-guess file > subset.txt
cat subset.txt
```

Expand Down Expand Up @@ -114,7 +114,7 @@ Create a new test session against the new build and request a subset again:

```
launchable record session --build mychange2 > session2.txt
launchable subset --session $(cat session2.txt) --get-tests-from-guess file > subset2.txt
launchable subset --session $(cat session2.txt) --use-case one-commit --get-tests-from-guess file > subset2.txt
```

Compare the results between the first and the second subsets:
Expand Down