-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathsnap.txt
More file actions
20 lines (15 loc) · 852 Bytes
/
snap.txt
File metadata and controls
20 lines (15 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
> vp run check # first run should be cache miss
$ vp check
pass: All 4 files are correctly formatted (<variable>ms, <variable> threads)
pass: Found no warnings or lint errors in 2 files (<variable>ms, <variable> threads)
> vp run check # second run should be cache hit
$ vp check ◉ cache hit, replaying
pass: All 4 files are correctly formatted (<variable>ms, <variable> threads)
pass: Found no warnings or lint errors in 2 files (<variable>ms, <variable> threads)
---
vp run: cache hit, <variable>ms saved.
> echo 'export const foo = 1;' > src/foo.js
> vp run check # third run should be cache miss after new file added
$ vp check ○ cache miss: 'foo.js' added in 'src', executing
pass: All 5 files are correctly formatted (<variable>ms, <variable> threads)
pass: Found no warnings or lint errors in 3 files (<variable>ms, <variable> threads)