| Index: tests/html/indexeddb_5_test.dart
|
| diff --git a/tests/html/indexeddb_5_test.dart b/tests/html/indexeddb_5_test.dart
|
| index 18e3daa877e0044d2cff8640cc70c73bf8b785f4..6b58ed07517e80fadd539c3e88c6ce28f13f95e3 100644
|
| --- a/tests/html/indexeddb_5_test.dart
|
| +++ b/tests/html/indexeddb_5_test.dart
|
| @@ -8,9 +8,6 @@ import 'utils.dart';
|
|
|
| main() {
|
| useHtmlIndividualConfiguration();
|
| - if (!idb.IdbFactory.supported) {
|
| - return;
|
| - }
|
|
|
| group('supportsDatabaseNames', () {
|
| test('supported', () {
|
| @@ -18,6 +15,10 @@ main() {
|
| });
|
| });
|
|
|
| + if (!idb.IdbFactory.supported) {
|
| + return;
|
| + }
|
| +
|
| group('functional', () {
|
| var dbName = 'test_db';
|
| var storeName = 'test_store';
|
|
|