blob: 1ce13b9b85158d7e4135a267727b89a524cdcc42 [file] [log] [blame]
// Copyright (c) 2015, 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 'package:test/test.dart';
import 'package:watcher/watcher.dart';
import '../utils.dart';
import 'file_tests.dart';
import 'link_tests.dart';
import 'startup_race_tests.dart';
void main() {
watcherFactory = (file) =>
PollingFileWatcher(file, pollingDelay: const Duration(milliseconds: 10));
/// See [enableSleepUntilNewModificationTime] for a note about the "polling"
/// tests.
setUp(enableSleepUntilNewModificationTime);
fileTests(isNative: false);
linkTests(isNative: false);
startupRaceTests(isNative: false);
}