From b6ffde2a9bb760ff00a8c5dd59986bb95843e164 Mon Sep 17 00:00:00 2001 From: Chris Trevino Date: Sun, 20 Feb 2022 09:31:41 -0800 Subject: [PATCH] test: remove examples from module tests --- module_test/api.json | 3 --- module_test/cjs-imports.cjs | 1 - module_test/mjs-imports.mjs | 2 -- 3 files changed, 6 deletions(-) diff --git a/module_test/api.json b/module_test/api.json index 5fa3915275..130824da3b 100644 --- a/module_test/api.json +++ b/module_test/api.json @@ -38,8 +38,5 @@ "tick": true, "wrapWithBackend": true, "wrapWithTestBackend": true - }, - "examples": { - "componentIndex": true } } diff --git a/module_test/cjs-imports.cjs b/module_test/cjs-imports.cjs index cd10b4ec09..b43a1ee280 100644 --- a/module_test/cjs-imports.cjs +++ b/module_test/cjs-imports.cjs @@ -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') diff --git a/module_test/mjs-imports.mjs b/module_test/mjs-imports.mjs index c66a294929..8b0e573dab 100644 --- a/module_test/mjs-imports.mjs +++ b/module_test/mjs-imports.mjs @@ -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') @@ -14,6 +13,5 @@ check(htmlBackend, 'htmlBackend') check(touchBackend, 'touchBackend') check(testBackend, 'testBackend') check(testUtils, 'testUtils') -check(examples, 'examples') console.log('👍 ESModules OK')