UNPKG

ns-suitescript-mocks

Version:

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

15 lines (12 loc) 292 B
/** * Tests for utils library * */ const fileUnderTest = require('../../Utils/utils'); describe('Testing utils library', () => { describe('random', () => { it('Should return integer', () => { expect(fileUnderTest.random(1, 10)).toEqual(expect.any(Number)); }); }); });