nach
Version:
nACH is a highly customizable Node.js module exposing a high & low-level API for generating ACH files for use within the ACH network
20 lines (19 loc) • 562 B
JavaScript
var assert = require('assert')
, Entry = require('../lib/entry')
, Batch = require('../lib/batch')
, File = require('../lib/file');
describe('Entry', function(){
describe('Create Entry', function(){
it('should create an entry successfully', function(){
var entry = new Entry({
receivingDFI: '081000210',
DFIAccount: '12345678901234567',
amount: '3521',
transactionCode: '22',
idNumber: 'RAj##23920rjf31',
individualName: 'Glen Selle',
discretionaryData: 'A1'
});
});
});
});