6ae9dedc60
Changed tests either use expect/minitest or async_helper/async_minitest as a replacement. There are still a few outstanding tests that need to be migrated off of unittest.dart. Change-Id: I9231d453f61507110b5a89360dfb9e5647a5b4c7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/135420 Reviewed-by: Sigmund Cherem <sigmund@google.com> Reviewed-by: Bob Nystrom <rnystrom@google.com> Commit-Queue: Srujan Gaddam <srujzs@google.com>
17 lines
443 B
Dart
17 lines
443 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. 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:html';
|
|
|
|
import 'package:expect/minitest.dart';
|
|
|
|
main() {
|
|
test('Basic TouchEvent', () {
|
|
if (TouchEvent.supported) {
|
|
var e = new TouchEvent('touch');
|
|
expect(e is TouchEvent, isTrue);
|
|
}
|
|
});
|
|
}
|