2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/dev/examples/zapier/test/index.js
Frédéric FRANCE aef850f6d3 zapier for dolibarr
2019-05-19 21:12:22 +02:00

18 lines
327 B
JavaScript

require('should');
const zapier = require('zapier-platform-core');
// Use this to make test calls into your app:
const App = require('../index');
const appTester = zapier.createAppTester(App);
describe('My App', () => {
it('should test something', (done) => {
const x = 1;
x.should.eql(1);
done();
});
});