UNPKG

ns-suitescript-mocks

Version:

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

13 lines (10 loc) 241 B
/** * Tests for a define function * */ const fileUnderTest = require('../../Utils/define'); describe('Testing define', () => { it('Should return a function ', () => { expect(fileUnderTest).toEqual(expect.any(Function)); }); });