Skip to content

Commit 6f8b7eb

Browse files
committed
Print environment too
1 parent 8951f55 commit 6f8b7eb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dwds/test/fixtures/context.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,10 @@ class TestContext {
433433
' -> notice chrome driver identity hash code is '
434434
'${identityHashCode(_chromeDriver)}',
435435
);
436+
log('Also notice Platform.environment:');
437+
for(var entry in Platform.environment.entries) {
438+
log(' ${entry.key}: ${entry.value}');
439+
}
436440
_webDriver = await createDriver(
437441
spec: WebDriverSpec.JsonWire,
438442
desired: capabilities,

0 commit comments

Comments
 (0)