mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 12:44:42 +01:00
6bbb961675
Partially addresses #264
18 lines
419 B
Dart
18 lines
419 B
Dart
// 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.
|
|
|
|
@TestOn('vm')
|
|
@Tags(const ['node'])
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
import '../../ensure_npm_package.dart';
|
|
import '../node_test.dart';
|
|
import '../shared/watch.dart';
|
|
|
|
void main() {
|
|
setUpAll(ensureNpmPackage);
|
|
sharedTests(runSass);
|
|
}
|