mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 12:44:42 +01:00
40 lines
1.1 KiB
Dart
40 lines
1.1 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(['node'])
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'package:cli_pkg/testing.dart' as pkg;
|
|
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(
|
|
RegExp(r"^\d+\.\d+\.\d+.* compiled with dart2js \d+\.\d+\.\d+"))));
|
|
await sass.shouldExit(0);
|
|
});
|
|
}
|
|
|
|
Future<TestProcess> runSass(Iterable<String> arguments,
|
|
{Map<String, String>? environment}) =>
|
|
pkg.start("sass", arguments,
|
|
environment: environment,
|
|
workingDirectory: d.sandbox,
|
|
encoding: utf8,
|
|
node: true);
|