mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-04 23:59:56 +00:00
Pipeline green https://microsoft.visualstudio.com/WindowsAI/_build/results?buildId=42142807&view=results  Related work items: #37220320
10 lines
325 B
JavaScript
10 lines
325 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
'use strict';
|
|
|
|
it('Browser E2E testing - WebAssembly backend (proxy, no threads)', async function () {
|
|
ort.env.wasm.numThreads = 1;
|
|
ort.env.wasm.proxy = true;
|
|
await testFunction(ort, { executionProviders: ['wasm'] });
|
|
});
|