// 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'asjs;
import'package:flutter_test/flutter_test.dart';voidmain(){group('test web_extension',(){Future<Map<String,dynamic>>Function(Map<String,String>)call;setUp((){call=(Map<String,String>args)async{returnFuture<Map<String,dynamic>>.value(args);};});test('web_extension should register a function',(){expect(()=>registerWebServiceExtension(call),returnsNormally);