mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-12 09:09:39 +01:00
35 lines
1.0 KiB
Dart
35 lines
1.0 KiB
Dart
// Copyright 2016 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(const ['node'])
|
|
import 'dart:io';
|
|
|
|
import 'package:path/path.dart' as p;
|
|
import 'package:scheduled_test/scheduled_process.dart';
|
|
import 'package:scheduled_test/scheduled_test.dart';
|
|
|
|
import 'cli_shared.dart';
|
|
import 'utils.dart';
|
|
|
|
void main() {
|
|
setUpAll(() {
|
|
var grinder = new ScheduledProcess.start(
|
|
Platform.executable, ["tool/grind.dart", "npm_package"]);
|
|
grinder.shouldExit(0);
|
|
});
|
|
|
|
sharedTests(_runSass);
|
|
|
|
test("--version prints the Sass and dart2js versions", () {
|
|
var sass = _runSass(["--version"]);
|
|
sass.stdout.expect(matches(
|
|
new RegExp(r"^\d+\.\d+\.\d+.* compiled with dart2js \d+\.\d+\.\d+")));
|
|
sass.shouldExit(0);
|
|
});
|
|
}
|
|
|
|
ScheduledProcess _runSass(List arguments) => new ScheduledProcess.start(
|
|
"node", <Object>[p.absolute("build/npm/sass.js")]..addAll(arguments),
|
|
workingDirectory: sandbox, description: "sass");
|