2018-05-23 00:06:07 +02:00
|
|
|
// Copyright 2018 Google Inc. Use of this source code is governed by an
|
|
|
|
// MIT-style license that can be found in the LICENSE file or at
|
|
|
|
// https://opensource.org/licenses/MIT.
|
|
|
|
|
2019-04-23 20:45:49 +02:00
|
|
|
// OS X's modification time reporting is flaky, so we skip these tests on it.
|
2023-05-19 22:22:44 +02:00
|
|
|
@TestOn('vm && !mac-os')
|
2018-05-23 00:06:07 +02:00
|
|
|
|
2019-09-11 20:53:26 +02:00
|
|
|
// File watching is inherently flaky at the OS level. To mitigate this, we do a
|
|
|
|
// few retries when the tests fail.
|
|
|
|
@Retry(3)
|
|
|
|
|
2018-05-23 00:06:07 +02:00
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
|
|
import '../dart_test.dart';
|
|
|
|
import '../shared/watch.dart';
|
|
|
|
|
|
|
|
void main() {
|
2018-06-27 22:12:16 +02:00
|
|
|
setUpAll(ensureSnapshotUpToDate);
|
2018-05-23 00:06:07 +02:00
|
|
|
sharedTests(runSass);
|
|
|
|
}
|