dart-sass/test/cli/node_test.dart
Natalie Weizenbaum 6ad67a6f28 Remove the workaround for dart-lang/sdk#30098
This un-reverts pull request #320 from sass/remove-path-workaround,
which was reverted by commit 0fb5d25ee2.
2018-06-14 16:15:27 -07:00

36 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.
@TestOn('vm')
@Tags(const ['node'])
import 'dart:async';
import 'package:path/path.dart' as p;
import 'package:test_process/test_process.dart';
import 'package:test_descriptor/test_descriptor.dart' as d;
import 'package:test/test.dart';
import '../ensure_npm_package.dart';
import 'shared.dart';
void main() {
setUpAll(ensureNpmPackage);
sharedTests(runSass);
test("--version prints the Sass and dart2js versions", () async {
var sass = await runSass(["--version"]);
expect(
sass.stdout,
emits(matches(new RegExp(
r"^\d+\.\d+\.\d+.* compiled with dart2js \d+\.\d+\.\d+"))));
await sass.shouldExit(0);
});
}
Future<TestProcess> runSass(Iterable<String> arguments) => TestProcess.start(
"node", [p.absolute("build/npm/sass.js")]..addAll(arguments),
workingDirectory: d.sandbox, description: "sass");