dart-sass/test/ensure_npm_package.dart
Natalie Weizenbaum 7e6f03fc18
Run the Dart CLI tests from app snapshots on CI (#383)
This substantially speeds up the test time, and once we re-enable Dart
2 support is should work around dart-lang/sdk#33257.
2018-06-27 13:12:16 -07:00

30 lines
882 B
Dart

// Copyright 2017 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.
import 'dart:async';
import 'package:stream_channel/stream_channel.dart';
import 'package:test/test.dart';
import 'package:sass/src/io.dart';
import 'io.dart';
hybridMain(StreamChannel channel) async {
ensureUpToDate("build/npm/sass.dart.js", "pub run grinder npm-package");
channel.sink.close();
}
/// Ensures that the NPM package is compiled and up-to-date.
///
/// This is safe to call even outside the Dart VM.
Future ensureNpmPackage() async {
// spawnHybridUri() doesn't currently work on Windows and Node due to busted
// path handling in the SDK.
if (isNode && isWindows) return;
var channel = spawnHybridUri("/test/ensure_npm_package.dart");
await channel.stream.toList();
}