mirror of
https://github.com/danog/dart-sass.git
synced 2025-01-07 13:28:30 +01:00
69077ddcea
These are now tested using the runner in sass-spec.
17 lines
405 B
Dart
17 lines
405 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.
|
|
|
|
@Tags(['node'])
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
import '../../ensure_npm_package.dart';
|
|
import '../node_test.dart';
|
|
import '../shared/source_maps.dart';
|
|
|
|
void main() {
|
|
setUpAll(ensureNpmPackage);
|
|
sharedTests(runSass);
|
|
}
|