Remove old fixtures directory

This commit is contained in:
Timothy Warren 2018-04-10 17:05:47 -04:00
parent 730c0bf34b
commit 95a52dd535
7 changed files with 0 additions and 77 deletions

View File

@ -1,3 +0,0 @@
BROWSER=none
INFERNO_APP_X = x-from-development-env
INFERNO_APP_DEVELOPMENT = development

View File

@ -1,3 +0,0 @@
BROWSER=none
INFERNO_APP_X = x-from-original-local-env
INFERNO_APP_ORIGINAL_2 = override-from-original-local-env-2

View File

@ -1,3 +0,0 @@
BROWSER=none
INFERNO_APP_X = x-from-production-env
INFERNO_APP_PRODUCTION = production

View File

@ -1,16 +0,0 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { render } from 'inferno';
import PublicUrl from './PublicUrl';
describe('PUBLIC_URL', () => {
it('renders without crashing', () => {
const div = document.createElement('div');
render(<PublicUrl />, div);
});
});

View File

@ -1,18 +0,0 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import Inferno from 'inferno';
import './assets/style.css';
import { test, version } from 'test-integrity';
export default () => {
const v = version();
if (!test() || v !== '2.0.0') {
throw new Error('Functionality test did not pass.');
}
return <p id="feature-linked-modules">{v}</p>;
};

View File

@ -1,23 +0,0 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import Inferno from 'inferno';
import InfernoDOM from 'inferno-dom';
import { test, version } from 'test-integrity';
import LinkedModules from './LinkedModules';
describe('linked modules', () => {
it('has integrity', () => {
expect(test());
expect(version() === '2.0.0');
});
it('renders without crashing', () => {
const div = document.createElement('div');
InfernoDOM.render(<LinkedModules />, div);
});
});

View File

@ -1,11 +0,0 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { render } from 'inferno';
import App from './App';
render(<App />, document.getElementById('root'));