-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathlaunch.json
53 lines (53 loc) · 1.44 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"version": "0.2.0",
"configurations": [
{
"name": "Example App",
"cwd": "example",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"args": [
"--observatory-port=8888",
"--dart-define=ABLY_API_KEY=replace_with_your_api_key",
],
},
{
"name": "Unit Tests",
"type": "dart",
"request": "launch",
"program": "test/",
},
{
"name": "Integration Tests: Launch App",
"cwd": "test_integration",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
"args": [
"--observatory-port=8888",
"--disable-service-auth-codes"
],
},
{
"name": "Integration Tests: Launch Driver",
"cwd": "test_integration",
"request": "launch",
"type": "dart",
"program": "test_driver/main_test.dart",
"env": {
"VM_SERVICE_URL": "http://127.0.0.1:8888/"
},
},
],
"compounds": [
{
"name": "Integration Tests",
"configurations": [
"Integration Tests: Launch App",
"Integration Tests: Launch Driver"
],
}
]
}