identification-numbers
Version:
Provides utility methods to validate and generate various identification numbers such as NIP, REGON, PESEL, etc.
17 lines (12 loc) • 415 B
JavaScript
describe('index', function () {
var indexModule = require('../../lib/identification-numbers/index.js');
it('should export nip', function () {
expect(indexModule.nip).toBeDefined();
});
it('should export pesel', function () {
expect(indexModule.pesel).toBeDefined();
});
it('should export regon', function () {
expect(indexModule.regon).toBeDefined();
});
});