mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-02 23:39:58 +00:00
12 lines
332 B
JavaScript
12 lines
332 B
JavaScript
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
const ort = require('onnxruntime-web');
|
||
|
|
const testFunction = require('./common');
|
||
|
|
|
||
|
|
it('Browser E2E testing - WebAssembly backend', async function () {
|
||
|
|
await testFunction(ort, { executionProviders: ['wasm'] });
|
||
|
|
|
||
|
|
process.exit();
|
||
|
|
});
|