mirror of
https://github.com/facebookarchive/prepack.git
synced 2024-11-09 21:20:06 +03:00
d7a60ebd35
Summary: Fix build. Closes https://github.com/facebook/prepack/pull/1098 Differential Revision: D6122926 Pulled By: hermanventer fbshipit-source-id: 3cf74746fa5db5b6fdf84fb923cb87af0c2e19f5
19 lines
530 B
JavaScript
19 lines
530 B
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
/* @flow */
|
|
// This file just runs the 4 test runners in one file for coverage
|
|
require("./test-residual.js");
|
|
|
|
require("./test-runner.js");
|
|
|
|
require("./generate-sourcemaps-test.js");
|
|
|
|
require("./test-error-handler.js");
|