UNPKG

ns-suitescript-mocks

Version:

Collection of mocks that can be used to improve unit-tests for SuiteScript 2.0.

16 lines (13 loc) 363 B
/** * Tests for a Netsuite sftp Module * */ const fileUnderTest = require('../../N/sftp'); describe('Testing sftp module', () => { it('Should return object with properies available in Netsuite\'s sftp module ', () => { const expected = { createConnection: expect.any(Function), }; expect(fileUnderTest).toMatchObject(expected); }); });