import.spec.js 296 B

1234567891011
  1. import expect from 'expect';
  2. import XSLX from './../../src';
  3. describe('node-xlsx import', () => {
  4. it('should get current object', () => {
  5. expect(typeof XSLX).toBe('object');
  6. });
  7. it('should has current keys', () => {
  8. expect(Object.keys(XSLX)).toEqual(['parse', 'build']);
  9. });
  10. });