mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-21 21:52:11 +00:00
* es2017 by default for ort-common * add visualizer and define plugin * es2017 for ort-web. also add build target for es5 * add multiple reduced size build for ort-web * resolve comments, add e2e tests and add docs
56 lines
1.9 KiB
JavaScript
56 lines
1.9 KiB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
'use strict';
|
|
|
|
const args = require('minimist')(process.argv.slice(2));
|
|
const SELF_HOST = !!args['self-host'];
|
|
const ORT_MAIN = args['ort-main'];
|
|
const TEST_MAIN = args['test-main'];
|
|
if (typeof TEST_MAIN !== 'string') {
|
|
throw new Error('flag --test-main=<TEST_MAIN_JS_FILE> is required');
|
|
}
|
|
const USER_DATA = args['user-data'];
|
|
if (typeof USER_DATA !== 'string') {
|
|
throw new Error('flag --user-data=<CHROME_USER_DATA_FOLDER> is required');
|
|
}
|
|
|
|
module.exports = function (config) {
|
|
const distPrefix = SELF_HOST ? './node_modules/onnxruntime-web/dist/' : 'http://localhost:8081/dist/';
|
|
config.set({
|
|
frameworks: ['mocha'],
|
|
files: [
|
|
{ pattern: distPrefix + ORT_MAIN },
|
|
{ pattern: './common.js' },
|
|
{ pattern: TEST_MAIN },
|
|
{ pattern: './node_modules/onnxruntime-web/dist/*.wasm', included: false, nocache: true },
|
|
{ pattern: './model.onnx', included: false }
|
|
],
|
|
proxies: {
|
|
'/model.onnx': '/base/model.onnx',
|
|
'/test-wasm-path-override/ort-wasm.wasm': '/base/node_modules/onnxruntime-web/dist/ort-wasm.wasm',
|
|
'/test-wasm-path-override/renamed.wasm': '/base/node_modules/onnxruntime-web/dist/ort-wasm.wasm',
|
|
},
|
|
client: { captureConsole: true, mocha: { expose: ['body'], timeout: 60000 } },
|
|
reporters: ['mocha'],
|
|
captureTimeout: 120000,
|
|
reportSlowerThan: 100,
|
|
browserDisconnectTimeout: 600000,
|
|
browserNoActivityTimeout: 300000,
|
|
browserDisconnectTolerance: 0,
|
|
browserSocketTimeout: 60000,
|
|
hostname: 'localhost',
|
|
browsers: [],
|
|
customLaunchers: {
|
|
Chrome_default: {
|
|
base: 'ChromeHeadless',
|
|
chromeDataDir: USER_DATA
|
|
},
|
|
Chrome_no_threads: {
|
|
base: 'ChromeHeadless',
|
|
chromeDataDir: USER_DATA,
|
|
// TODO: no-thread flags
|
|
}
|
|
}
|
|
});
|
|
};
|