blob: 50fc41679ffd7c74ecb281a7d4d07abb37262e40 [file] [log] [blame]
// Copyright 2022 The Dart Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO: The examples don't work on windows
@TestOn('!windows')
import 'dart:io';
import 'package:test/test.dart';
import 'package:test_process/test_process.dart';
void main() {
test('vm client example can build and rebuild an app', () async {
var process = await TestProcess.start(
Platform.resolvedExecutable, ['run', 'example/vm_client.dart']);
await expectLater(process.stdout,
emitsThrough(contains('done compiling example/app/main.dart')));
await expectLater(
process.stdout, emitsThrough(contains('APP -> hello/world')));
await expectLater(process.stdout,
emitsThrough(contains('done recompiling example/app/main.dart')));
await expectLater(
process.stdout, emitsThrough(contains('APP -> goodbye/world')));
expect(await process.exitCode, 0);
});
}