Kaynağa Gözat

Remove ./src/core proxy module.

Renée Kooi 6 yıl önce
ebeveyn
işleme
d688c8e8e4
2 değiştirilmiş dosya ile 0 ekleme ve 11 silme
  1. 0 1
      src/core/index.js
  2. 0 10
      src/core/index.test.js

+ 0 - 1
src/core/index.js

@@ -1 +0,0 @@
-module.exports = require('@uppy/core')

+ 0 - 10
src/core/index.test.js

@@ -1,10 +0,0 @@
-const Core = require('./index')
-
-describe('core/index', () => {
-  it('should expose the uppy core as the default export', () => {
-    expect(typeof Core).toEqual('function')
-    const core = new Core({})
-    expect(typeof core).toEqual('object')
-    expect(core.constructor.name).toEqual('Uppy')
-  })
-})