From e31f23fc2ac9925dfb445f0f61e93a7363dda5fc Mon Sep 17 00:00:00 2001 From: Sebastian Markbage Date: Thu, 18 Dec 2014 13:52:45 -0800 Subject: [PATCH] Add placeholders for static prop type tests This is where tests of static prop types should go when we have the infrastructure set up to handle it. --- .../types/__tests__/ReactFlowPropTypes-test.js | 18 ++++++++++++++++++ .../__tests__/ReactTypeScriptPropTypes-test.js | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 src/modern/types/__tests__/ReactFlowPropTypes-test.js create mode 100644 src/modern/types/__tests__/ReactTypeScriptPropTypes-test.js diff --git a/src/modern/types/__tests__/ReactFlowPropTypes-test.js b/src/modern/types/__tests__/ReactFlowPropTypes-test.js new file mode 100644 index 0000000000..6313667651 --- /dev/null +++ b/src/modern/types/__tests__/ReactFlowPropTypes-test.js @@ -0,0 +1,18 @@ +/** + * Copyright 2014, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @emails react-core + */ + +"use strict"; + +describe('ReactFlowPropTypes', function() { + + // TODO: Test Flow integration and ensure that prop types works. + +}); diff --git a/src/modern/types/__tests__/ReactTypeScriptPropTypes-test.js b/src/modern/types/__tests__/ReactTypeScriptPropTypes-test.js new file mode 100644 index 0000000000..27aca01fa1 --- /dev/null +++ b/src/modern/types/__tests__/ReactTypeScriptPropTypes-test.js @@ -0,0 +1,18 @@ +/** + * Copyright 2014, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @emails react-core + */ + +"use strict"; + +describe('ReactTypeScriptPropTypes', function() { + + // TODO: Test TypeScript integration and ensure that prop types works. + +});