blob: 68923dec217a46c9ed313160a934a680ec027688 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package main
import (
"context"
"testing"
)
// Running go test runs the smoke test.
func Test(t *testing.T) {
// TODO(maruel): Redirect child task output to log.
if err := mainImpl(context.Background()); err != nil {
t.Fatal(err)
}
}