diff --git a/test/common/dev_variables_test.dart b/test/common/dev_variables_test.dart index e884654f..0c65e2a0 100644 --- a/test/common/dev_variables_test.dart +++ b/test/common/dev_variables_test.dart @@ -1,6 +1,7 @@ import 'dart:io'; import 'package:test/test.dart'; +import 'package:wiredash/src/_wiredash_internal.dart'; void main() { test('kDevMode == false', () { @@ -8,6 +9,7 @@ void main() { final content = internalFile.readAsStringSync(); expect(content, contains('kDevMode = false')); expect(content, isNot(contains('kDevMode = true'))); + expect(kDevMode, isFalse); }); test('_kDebugStreamPod == false', () {