From 5df47676c358281079d4c2c490b7ff958d758eef Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Sun, 3 May 2020 02:29:02 -0400 Subject: [PATCH] remove accidentally committed test-import.ts it should be the .mjs file --- test/test-import.ts | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 test/test-import.ts diff --git a/test/test-import.ts b/test/test-import.ts deleted file mode 100644 index d65a04b1..00000000 --- a/test/test-import.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { describe, it } from 'mocha'; -// import { expect } from 'chai'; -// import QuaggaJSStaticInterface from '../type-definitions/quagga'; -// import Q from '../lib/quagga'; - -// console.warn('* Q=', Q); - -describe('testing node require', () => { - it('require works', () => { - // expect(Q).to.be.an('object'); - // expect(Q.init).to.be.a('function'); - // expect(Q.start).to.be.a('function'); - // expect(Q.stop).to.be.a('function'); - }); - it('require default works', () => { - // expect(Q2).to.be.an('object'); - // expect(Q.init).to.be.a('function'); - // expect(Q.start).to.be.a('function'); - // expect(Q.stop).to.be.a('function'); - }); -}); - -export default 1;