web_extension_test.dart 788 Bytes
Newer Older
1 2 3 4 5 6
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:js' as js;

7
import 'package:flutter_driver/src/extension/_extension_web.dart';
8 9 10 11
import 'package:flutter_test/flutter_test.dart';

void main() {
  group('test web_extension', () {
12
    late Future<Map<String, dynamic>> Function(Map<String, String>) call;
13 14 15 16 17 18 19 20 21 22

    setUp(() {
      call = (Map<String, String> args) async {
        return Future<Map<String, dynamic>>.value(args);
      };
    });

    test('web_extension should register a function', () {
      expect(() => registerWebServiceExtension(call),
          returnsNormally);
23
      expect(js.context.hasProperty(r'$flutterDriver'), true);
24 25 26
    });
  });
}