3638-export_database #899

Merged
joan merged 17 commits from 3638-export_database into dev 2022-03-23 10:43:17 +00:00
3 changed files with 3 additions and 6 deletions
Showing only changes of commit a9b6dcacfe - Show all commits

View File

@ -1,8 +1,7 @@
const models = require('vn-loopback/server/server').models;
const soap = require('soap');
// #3673 sendSms tests excluded
xdescribe('client sendSms()', () => {
describe('client sendSms()', () => {
it('should now send a message and log it', async() => {
spyOn(soap, 'createClientAsync').and.returnValue('a so fake client');
const tx = await models.Client.beginTransaction({});

View File

@ -1,7 +1,6 @@
const app = require('vn-loopback/server/server');
// #3673 sendSms tests excluded
xdescribe('sms send()', () => {
describe('sms send()', () => {
it('should not return status error', async() => {
const ctx = {req: {accessToken: {userId: 1}}};
const result = await app.models.Sms.send(ctx, 1105, '123456789', 'My SMS Body');

View File

@ -1,8 +1,7 @@
const models = require('vn-loopback/server/server').models;
const soap = require('soap');
// #3673 sendSms tests excluded
xdescribe('ticket sendSms()', () => {
describe('ticket sendSms()', () => {
it('should send a message and log it', async() => {
const tx = await models.Ticket.beginTransaction({});