mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
13 lines
337 B
JavaScript
13 lines
337 B
JavaScript
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
/* eslint-disable */
|
||
|
|
|
||
|
|
import * as ort from 'onnxruntime-web';
|
||
|
|
|
||
|
|
import testFunction from './common.mjs';
|
||
|
|
|
||
|
|
it('Node.js E2E testing - WebAssembly backend[esm]', async function() {
|
||
|
|
await testFunction(ort, {executionProviders: ['wasm']});
|
||
|
|
});
|