mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
'use strict';
|
|
|
|
it('Browser E2E testing - WebAssembly backend (proxy)', async function() {
|
|
ort.env.wasm.proxy = true;
|
|
await testFunction(ort, {executionProviders: ['wasm']});
|
|
});
|