Skip to content

Commit

Permalink
test: remove examples from module tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino committed Feb 20, 2022
1 parent 227d1f6 commit b6ffde2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions module_test/api.json
Expand Up @@ -38,8 +38,5 @@
"tick": true,
"wrapWithBackend": true,
"wrapWithTestBackend": true
},
"examples": {
"componentIndex": true
}
}
1 change: 0 additions & 1 deletion module_test/cjs-imports.cjs
Expand Up @@ -7,6 +7,5 @@ check(require('react-dnd-html5-backend'), 'htmlBackend')
check(require('react-dnd-touch-backend'), 'touchBackend')
check(require('react-dnd-test-backend'), 'testBackend')
check(require('react-dnd-test-utils'), 'testUtils')
check(require('react-dnd-examples'), 'examples')

console.log('👍 CommonJS Modules OK')
2 changes: 0 additions & 2 deletions module_test/mjs-imports.mjs
Expand Up @@ -5,7 +5,6 @@ import * as htmlBackend from 'react-dnd-html5-backend'
import * as touchBackend from 'react-dnd-touch-backend'
import * as testBackend from 'react-dnd-test-backend'
import * as testUtils from 'react-dnd-test-utils'
import * as examples from 'react-dnd-examples'
import { check } from './common.js'

check(core, 'core')
Expand All @@ -14,6 +13,5 @@ check(htmlBackend, 'htmlBackend')
check(touchBackend, 'touchBackend')
check(testBackend, 'testBackend')
check(testUtils, 'testUtils')
check(examples, 'examples')

console.log('👍 ESModules OK')

0 comments on commit b6ffde2

Please sign in to comment.