onnxruntime/js/react_native/e2e/test/OnnxruntimeModuleExample.test.js

20 lines
638 B
JavaScript
Raw Normal View History

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
/* Initial Simple Detox Test Setup. Can potentially add more unit tests. */
describe('OnnxruntimeModuleExample', () => {
beforeAll(async () => {
await device.launchApp();
});
it('OnnxruntimeModuleExampleE2ETest CheckInferenceResultValueIsCorrect', async () => {
if (device.getPlatform() === 'ios') {
await expect(element(by.label('output')).atIndex(1)).toHaveText('Result: 3');
}
if (device.getPlatform() === 'android') {
await expect(element(by.label('output'))).toHaveText('Result: 3');
}
});
});