We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76439d2 commit 94b87e6Copy full SHA for 94b87e6
.github/workflows/ci.yml
@@ -6,7 +6,7 @@ permissions:
6
contents: read
7
8
jobs:
9
- fmt:
+ ci:
10
runs-on: ${{ matrix.operating-system }}
11
strategy:
12
matrix:
@@ -26,3 +26,6 @@ jobs:
26
27
- name: Check fmt
28
run: v fmt -verify .
29
+
30
+ - name: Check fmt
31
+ run: v test .
README.md
@@ -33,13 +33,13 @@ Module {
33
## Usage
34
35
```v
36
-import vest
+import vest { expect }
37
38
fn hello(who string) string {
39
return 'Hello ${who}!'
40
}
41
42
fn test_hello() {
43
- expect(hello('Vest')).to_equal('Hello Vest!')
+ expect(hello('Vest')).equal('Hello Vest!')
44
45
```
0 commit comments