Skip to content

Commit fcd4e15

Browse files
committedJun 20, 2023
Add Golden Tests
1 parent 000becd commit fcd4e15

File tree

115 files changed

+1870
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+1870
-9
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,6 @@ build/
7373
!**/ios/**/default.mode2v3
7474
!**/ios/**/default.pbxuser
7575
!**/ios/**/default.perspectivev3
76+
77+
# don't check in golden failure output
78+
**/failures/*.png

‎.vscode/launch.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Golden",
9+
"request": "launch",
10+
"type": "dart",
11+
"codeLens": {
12+
"for": ["run-test", "run-test-file"]
13+
},
14+
"args": ["--update-goldens"]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)
Please sign in to comment.