This commit is contained in:
parent
3f1c843332
commit
590e0af038
|
@ -1,16 +1,5 @@
|
|||
const axios = require('axios');
|
||||
const {Docuware} = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('Docuware core', () => {
|
||||
beforeAll(() => {
|
||||
process.env.NODE_ENV = 'testing';
|
||||
spyOn(Docuware, 'hasDeviceReady').and.returnValue(true);
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
delete process.env.NODE_ENV;
|
||||
});
|
||||
|
||||
describe('hasDeviceReady()', () => {
|
||||
it('should return true', async() => {
|
||||
const result = await Docuware.hasDeviceReady({device: 'Tablet 1'});
|
||||
|
@ -31,6 +20,16 @@ describe('Docuware core', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('Docuware core', () => {
|
||||
beforeAll(() => {
|
||||
process.env.NODE_ENV = 'testing';
|
||||
spyOn(Docuware, 'hasDeviceReady').and.returnValue(true);
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
delete process.env.NODE_ENV;
|
||||
});
|
||||
|
||||
describe('getOptions()', () => {
|
||||
it('should return url and headers', async() => {
|
||||
const result = await Docuware.getOptions();
|
||||
|
@ -173,7 +172,7 @@ describe('Docuware core', () => {
|
|||
expect(result.id).toEqual(1);
|
||||
});
|
||||
|
||||
fit('should return data with parse', async() => {
|
||||
it('should return data with parse', async() => {
|
||||
spyOn(Docuware, 'getFileCabinet').and.returnValue((new Promise(resolve => resolve(Math.random()))));
|
||||
spyOn(Docuware, 'getDialog').and.returnValue((new Promise(resolve => resolve(Math.random()))));
|
||||
const data = {
|
||||
|
|
Loading…
Reference in New Issue