-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_setup.dart
39 lines (34 loc) · 1.08 KB
/
test_setup.dart
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
import 'dart:async';
import 'package:http/browser_client.dart';
import 'package:yaml/yaml.dart';
import 'test_config.dart';
Future<AppOptions?> setup() async {
// Load javascript
var client = BrowserClient();
// Load client info
try {
var sample = await client.read(Uri.parse('sample.local.config.yaml'));
try {
var local = await client.read(Uri.parse('local.config.yaml'));
var map = (loadYaml(local) as Map).cast<String, dynamic>();
var options = AppOptions.fromMap(map);
if (options.clientId == null) {
print('Missing "clientId" in local.config.yaml');
return null;
}
return options;
} catch (e) {
print(e);
print('Cannot find local.config.yaml');
print(
'Create it from the sample.local.config.yaml file with your firebase information');
print(sample);
}
} catch (e) {
print(e);
print('Cannot find sample.local.config.yaml');
print('Make sure to run the test using something like: ');
print(' pub run build_runner test --fail-on-severe -- -p chrome');
}
return null;
}