dart-sass/test/cli/node/update_test.dart

19 lines
503 B
Dart
Raw Normal View History

// 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.
@TestOn('vm && !mac-os')
2018-11-16 00:16:24 +01:00
@Tags(['node'])
import 'package:test/test.dart';
import '../../ensure_npm_package.dart';
import '../node_test.dart';
import '../shared/update.dart';
void main() {
setUpAll(ensureNpmPackage);
sharedTests(runSass);
}