onnxruntime/js/web/test/e2e/node-test-main.js

13 lines
347 B
JavaScript

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
const ort = require('onnxruntime-web');
const testFunction = require('./common');
it('Node.js E2E testing - WebAssembly backend', async function () {
await testFunction(ort, { executionProviders: ['wasm'] });
process.exit();
});