UNPKG

481 BJavaScriptView Raw
1/** Copyright (c) 2018 Uber Technologies, Inc.
2 *
3 * This source code is licensed under the MIT license found in the
4 * LICENSE file in the root directory of this source tree.
5 *
6 * @flow
7 */
8
9/* eslint-env node */
10
11const testTarget = require('./test');
12
13exports.run = (...args /*: any */) => {
14 // eslint-disable-next-line no-console
15 console.warn(
16 'Deprecation warning: `fusion test-app` is deprecated, use `fusion test` instead.'
17 );
18 return testTarget.run(...args);
19};