mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
convert to js with babel
This commit is contained in:
parent
3b2d1e2280
commit
0d22ce3d0e
70
addons/background/.eslintrc.js
Normal file
70
addons/background/.eslintrc.js
Normal file
@ -0,0 +1,70 @@
|
||||
const error = 2;
|
||||
const warn = 1;
|
||||
const ignore = 0;
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
extends: ['eslint-config-airbnb', 'plugin:jest/recommended', 'prettier'],
|
||||
plugins: ['prettier', 'jest', 'react', 'json'],
|
||||
parser: 'babel-eslint',
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
},
|
||||
env: {
|
||||
es6: true,
|
||||
node: true,
|
||||
'jest/globals': true,
|
||||
},
|
||||
rules: {
|
||||
strict: [error, 'never'],
|
||||
'prettier/prettier': [
|
||||
warn,
|
||||
{
|
||||
printWidth: 100,
|
||||
tabWidth: 2,
|
||||
bracketSpacing: true,
|
||||
trailingComma: 'es5',
|
||||
singleQuote: true,
|
||||
},
|
||||
],
|
||||
quotes: [warn, 'single'],
|
||||
'class-methods-use-this': ignore,
|
||||
'arrow-parens': [warn, 'as-needed'],
|
||||
'space-before-function-paren': ignore,
|
||||
'import/no-unresolved': warn,
|
||||
'import/extensions': [
|
||||
warn,
|
||||
{
|
||||
js: 'never',
|
||||
json: 'always',
|
||||
},
|
||||
],
|
||||
'import/no-extraneous-dependencies': [
|
||||
warn,
|
||||
{
|
||||
devDependencies: [
|
||||
'**/*.test.js',
|
||||
'**/scripts/*.js',
|
||||
'**/stories/*.js',
|
||||
'**/__tests__/*.js',
|
||||
],
|
||||
peerDependencies: true,
|
||||
},
|
||||
],
|
||||
'import/prefer-default-export': ignore,
|
||||
'react/jsx-wrap-multilines': ignore,
|
||||
'react/jsx-indent-props': ignore,
|
||||
'react/jsx-closing-bracket-location': ignore,
|
||||
'react/jsx-uses-react': error,
|
||||
'react/jsx-uses-vars': error,
|
||||
'react/react-in-jsx-scope': error,
|
||||
'react/jsx-filename-extension': [
|
||||
warn,
|
||||
{
|
||||
extensions: ['.js', '.jsx'],
|
||||
},
|
||||
],
|
||||
'jsx-a11y/accessible-emoji': ignore,
|
||||
'react/no-unescaped-entities': ignore,
|
||||
},
|
||||
};
|
@ -2,5 +2,5 @@ import { configure, addDecorator } from '@storybook/react';
|
||||
|
||||
addDecorator((story) => (<div style={{padding: 20}}>{story()}</div>));
|
||||
|
||||
const req = require.context('../src/', true, /\.story.tsx$/);
|
||||
const req = require.context('../src/', true, /\.story.js$/);
|
||||
configure(() => { req.keys().forEach(req) }, module);
|
||||
|
@ -2,16 +2,11 @@ const path = require("path");
|
||||
const include = path.resolve(__dirname, '../');
|
||||
|
||||
module.exports = {
|
||||
resolve: {
|
||||
// Add `.ts` and `.tsx` as a resolvable extension.
|
||||
extensions: [".webpack.js", ".web.js", ".ts", ".tsx", ".js"]
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{ test: /\.css?$/, loaders: ['style', 'raw'], include },
|
||||
{ test: /\.json?$/, loaders: ['json'], include },
|
||||
{ test: /\.ts(x?)$/, loader: "babel-loader!ts-loader", include },
|
||||
{ test: /\.js$/, loader: "source-map-loader",enforce: "pre", include }
|
||||
{ test: /\.js$/, loader: "babel-loader", include }
|
||||
]
|
||||
},
|
||||
externals: {
|
||||
|
@ -3,25 +3,24 @@
|
||||
"version": "3.0.0",
|
||||
"description": "A storybook addon to show different backgrounds for your preview",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"storybook": "start-storybook -p 3000",
|
||||
"storybook": "start-storybook -p 4000",
|
||||
"pretest": "npm run compile",
|
||||
"build": "build-storybook -s src -o docs",
|
||||
"test": "jest",
|
||||
"posttest": "npm run lint",
|
||||
"compile": "tsc",
|
||||
"compile": "babel src --out-dir dist --ignore __tests__",
|
||||
"coverage": "jest --coverage",
|
||||
"watch": "tsc -w",
|
||||
"lint": "tslint 'src/*.ts*' && tslint 'test/*.ts*'"
|
||||
"watch": "npm run compile -- --watch",
|
||||
"lint": "eslint 'src/*.js' && eslint 'test/*.js'"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/NewSpring/react-storybook-addon-backgrounds.git"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^0.14.7 || ^15.0.0",
|
||||
"@storybook/addons": "^v3.1.6"
|
||||
"@storybook/addons": "^v3.1.6",
|
||||
"react": "^0.14.7 || ^15.0.0"
|
||||
},
|
||||
"keywords": [
|
||||
"react-storybook",
|
||||
@ -37,6 +36,7 @@
|
||||
"@storybook/addon-centered": "^v3.1.2",
|
||||
"@storybook/react": "^v3.1.7",
|
||||
"babel-core": "^6.4.5",
|
||||
"babel-eslint": "^7.2.3",
|
||||
"babel-loader": "^7.1.1",
|
||||
"babel-plugin-add-module-exports": "^0.2.1",
|
||||
"babel-plugin-react-remove-prop-types": "^3.0.0",
|
||||
@ -52,10 +52,20 @@
|
||||
"babel-traverse": "^6.14.0",
|
||||
"coveralls": "^2.11.12",
|
||||
"enzyme": "^2.4.1",
|
||||
"eslint": "^3.19.0",
|
||||
"eslint-config-airbnb": "^15.0.1",
|
||||
"eslint-config-prettier": "^2.1.1",
|
||||
"eslint-plugin-import": "^2.3.0",
|
||||
"eslint-plugin-jest": "^20.0.3",
|
||||
"eslint-plugin-json": "^1.2.0",
|
||||
"eslint-plugin-jsx-a11y": "^5.0.3",
|
||||
"eslint-plugin-prettier": "^2.1.1",
|
||||
"eslint-plugin-react": "^7.0.1",
|
||||
"expect": "^1.20.2",
|
||||
"jest-cli": "^20.0.4",
|
||||
"jsdom": "^11.1.0",
|
||||
"mocha": "^3.0.2",
|
||||
"prettier": "^1.5.2",
|
||||
"raw-loader": "^0.5.1",
|
||||
"react": "^15.3.1",
|
||||
"react-addons-test-utils": "^15.3.1",
|
||||
@ -63,12 +73,10 @@
|
||||
"react-transform-catch-errors": "^1.0.2",
|
||||
"react-transform-hmr": "^1.0.4",
|
||||
"redbox-react": "^1.3.0",
|
||||
"source-map-loader": "^0.2.1",
|
||||
"ts-loader": "^0.8.2",
|
||||
"tslint": "^3.15.1",
|
||||
"typescript": "^1.8.10"
|
||||
"source-map-loader": "^0.2.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"babel-cli": "^6.24.1",
|
||||
"object-assign": "^4.1.0"
|
||||
},
|
||||
"jest": {
|
||||
|
32
addons/background/shims.d.ts
vendored
32
addons/background/shims.d.ts
vendored
@ -1,32 +0,0 @@
|
||||
|
||||
declare module "@storybook/addons" {
|
||||
|
||||
interface PanelOpts {
|
||||
title: string;
|
||||
render(): any
|
||||
}
|
||||
|
||||
interface AddOn {
|
||||
getChannel(): NodeJS.EventEmitter;
|
||||
register(name: string, callback: (api: any) => void): void;
|
||||
addPanel(id: string, panelOpts: PanelOpts): void
|
||||
}
|
||||
|
||||
let addon: AddOn
|
||||
export default addon;
|
||||
}
|
||||
|
||||
declare module "@storybook/react" {
|
||||
interface Story {
|
||||
add(storyName: string, callback: Function): Story;
|
||||
addDecorator(decorator: any): Story
|
||||
}
|
||||
|
||||
export function storiesOf(name: string, module: any): Story;
|
||||
export function action(name: string, ...params: any[]): Function;
|
||||
|
||||
}
|
||||
|
||||
declare module "@storybook/addon-centered" {
|
||||
export default function(): any;
|
||||
}
|
@ -1,7 +1,8 @@
|
||||
import * as React from "react";
|
||||
import addons from "@storybook/addons";
|
||||
|
||||
import Swatch from "./Swatch";
|
||||
import assign = require("object-assign");
|
||||
const assign = require("object-assign");
|
||||
|
||||
const style = {
|
||||
font: {
|
||||
@ -10,24 +11,7 @@ const style = {
|
||||
},
|
||||
};
|
||||
|
||||
export interface BackgroundDetail {
|
||||
name?: string;
|
||||
value: string;
|
||||
default?: boolean;
|
||||
};
|
||||
|
||||
export interface StoryBookAPI {
|
||||
getQueryParam(param: string): string;
|
||||
setQueryParams(params: { [key: string]: string } ): void;
|
||||
selectStory(story: string, storyOf: string): void;
|
||||
}
|
||||
|
||||
export interface BackgroundPanelProps {
|
||||
channel: NodeJS.EventEmitter;
|
||||
api: StoryBookAPI;
|
||||
}
|
||||
|
||||
const defaultBackground: BackgroundDetail = {
|
||||
const defaultBackground = {
|
||||
name: "default",
|
||||
value: "transparent",
|
||||
};
|
||||
@ -62,14 +46,15 @@ const Instructions = () => (
|
||||
</div>
|
||||
);
|
||||
|
||||
export default class BackgroundPanel extends React.Component<BackgroundPanelProps, any> {
|
||||
|
||||
state = { backgrounds: [] };
|
||||
|
||||
export default class BackgroundPanel extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.props.channel.on("background-set", backgrounds => {
|
||||
this.channel = props.channel || addons.getChannel();
|
||||
|
||||
this.state = { backgrounds: [] }
|
||||
|
||||
this.channel.on("background-set", backgrounds => {
|
||||
this.setState({ backgrounds });
|
||||
const currentBackground = this.props.api.getQueryParam("background");
|
||||
|
||||
@ -81,21 +66,21 @@ export default class BackgroundPanel extends React.Component<BackgroundPanelProp
|
||||
}
|
||||
});
|
||||
|
||||
this.props.channel.on("background-unset", backgrounds => {
|
||||
this.channel.on("background-unset", backgrounds => {
|
||||
this.setState({ backgrounds: [] });
|
||||
this.props.api.setQueryParams({ background: null });
|
||||
});
|
||||
}
|
||||
|
||||
private setBackgroundInPreview = (background) => this.props.channel.emit("background", background);
|
||||
setBackgroundInPreview = (background) => this.channel.emit("background", background);
|
||||
|
||||
private setBackgroundFromSwatch = (background) => {
|
||||
setBackgroundFromSwatch = (background) => {
|
||||
this.setBackgroundInPreview(background);
|
||||
this.props.api.setQueryParams({ background });
|
||||
}
|
||||
|
||||
render () {
|
||||
const backgrounds: BackgroundDetail[] = [...this.state.backgrounds];
|
||||
const backgrounds = [...this.state.backgrounds];
|
||||
|
||||
if (!backgrounds.length) return <Instructions />;
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
import assign = require("object-assign");
|
||||
import * as React from "react";
|
||||
const assign = require("object-assign");
|
||||
|
||||
const style = {
|
||||
swatches: {
|
||||
@ -33,13 +33,7 @@ const style = {
|
||||
},
|
||||
};
|
||||
|
||||
export interface BackgroundItemProps {
|
||||
value: string;
|
||||
name?: string;
|
||||
setBackground(value: string): void;
|
||||
}
|
||||
|
||||
export default ({ name, value, setBackground }: BackgroundItemProps) => (
|
||||
export default ({ name, value, setBackground }) => (
|
||||
<div
|
||||
style={assign({}, style.swatches, style.listStyle, style.hard)}
|
||||
onClick={() => setBackground(value)}
|
@ -73,7 +73,7 @@ describe("Background Panel", () => {
|
||||
const SpiedChannel = new EventEmitter();
|
||||
const backgroundPanel = TestUtils.renderIntoDocument(<BackgroundPanel channel={SpiedChannel} api={mockedApi} />);
|
||||
const localBgs = [...backgrounds];
|
||||
(localBgs[0] as any).default = true;
|
||||
(localBgs[0]).default = true;
|
||||
SpiedChannel.emit("background-set", localBgs);
|
||||
|
||||
expect(backgroundPanel.state.backgrounds[0].name).toBe(localBgs[0].name);
|
||||
@ -82,14 +82,14 @@ describe("Background Panel", () => {
|
||||
//check to make sure the default bg was added
|
||||
const headings = TestUtils.scryRenderedDOMComponentsWithTag(backgroundPanel, "h4");
|
||||
expect(headings.length).toBe(8);
|
||||
delete (backgrounds[0] as any).default;
|
||||
delete (backgrounds[0]).default;
|
||||
});
|
||||
|
||||
it("should allow the default swatch become the background color", () => {
|
||||
const SpiedChannel = new EventEmitter();
|
||||
const backgroundPanel = TestUtils.renderIntoDocument(<BackgroundPanel channel={SpiedChannel} api={mockedApi} />);
|
||||
const localBgs = [...backgrounds];
|
||||
(localBgs[1] as any).default = true;
|
||||
(localBgs[1]).default = true;
|
||||
SpiedChannel.on("background", bg => {
|
||||
expect(bg).toBe(localBgs[1].value);
|
||||
})
|
||||
@ -101,10 +101,10 @@ describe("Background Panel", () => {
|
||||
//check to make sure the default bg was added
|
||||
const headings = TestUtils.scryRenderedDOMComponentsWithTag(backgroundPanel, "h4");
|
||||
expect(headings.length).toBe(8);
|
||||
delete (backgrounds[1] as any).default;
|
||||
delete (backgrounds[1]).default;
|
||||
});
|
||||
|
||||
it("should unset all swatches on receiving the backgroun-unset message", () => {
|
||||
it("should unset all swatches on receiving the background-unset message", () => {
|
||||
const SpiedChannel = new EventEmitter();
|
||||
const backgroundPanel = TestUtils.renderIntoDocument(<BackgroundPanel channel={SpiedChannel} api={mockedApi} />);
|
||||
SpiedChannel.emit("background-set", backgrounds);
|
@ -1,9 +1,9 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
const EventEmitter = require("events"); // tslint:disable-line
|
||||
import * as React from "react";
|
||||
const EventEmitter = require("events");
|
||||
import { shallow, mount } from "enzyme";
|
||||
import Swatch from "../Swatch";
|
||||
const TestUtils = require("react-addons-test-utils"); // tslint:disable-line
|
||||
const mockedSetBackround = (val: string) => {} // tslint:disable-line
|
||||
const TestUtils = require("react-addons-test-utils");
|
||||
const mockedSetBackround = (val) => {}
|
||||
|
||||
describe("Swatch", function() {
|
||||
it("should exist", () => {
|
@ -1,8 +1,8 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
const EventEmitter = require("events"); // tslint:disable-line
|
||||
import * as React from "react"; // eslint:disable-line
|
||||
const EventEmitter = require("events"); // eslint:disable-line
|
||||
import { shallow } from "enzyme";
|
||||
import { BackgroundDecorator } from "../index";
|
||||
const TestUtils = require("react-addons-test-utils"); // tslint:disable-line
|
||||
const TestUtils = require("react-addons-test-utils"); // eslint:disable-line
|
||||
|
||||
const testStory = () => () => <p>Hello World!</p>;
|
||||
|
@ -1,6 +1,6 @@
|
||||
import * as React from "react";
|
||||
import addons from "@storybook/addons";
|
||||
import assign = require("object-assign"); // tslint:disable-line
|
||||
const assign = require("object-assign");
|
||||
|
||||
const style = {
|
||||
wrapper: {
|
||||
@ -17,12 +17,8 @@ const style = {
|
||||
},
|
||||
};
|
||||
|
||||
export class BackgroundDecorator extends React.Component<any, any> {
|
||||
|
||||
private channel: NodeJS.EventEmitter;
|
||||
private story: any;
|
||||
|
||||
public state = { background: "transparent" };
|
||||
export class BackgroundDecorator extends React.Component {
|
||||
state = { background: "transparent" };
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
@ -53,7 +49,7 @@ export class BackgroundDecorator extends React.Component<any, any> {
|
||||
this.channel.emit("background-unset");
|
||||
}
|
||||
|
||||
private setBackground = background => this.setState({ background })
|
||||
setBackground = background => this.setState({ background })
|
||||
|
||||
render() {
|
||||
const styles = style.wrapper;
|
@ -1,15 +1,14 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
import * as React from "react";
|
||||
import { storiesOf } from "@storybook/react";
|
||||
import centered from "@storybook/addon-centered";
|
||||
|
||||
import backgrounds from "./index.tsx";
|
||||
import backgrounds from "./index.js";
|
||||
|
||||
storiesOf("First Component", module)
|
||||
.addDecorator(centered)
|
||||
.add("First Button", () => <button>Click me</button>)
|
||||
;
|
||||
|
||||
|
||||
storiesOf("Second Component", module)
|
||||
.addDecorator(centered)
|
||||
.addDecorator(backgrounds([
|
@ -1,4 +1,4 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
import * as React from "react";
|
||||
import addons from "@storybook/addons";
|
||||
|
||||
import BackgroundPanel from "./BackgroundPanel";
|
@ -1,27 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": true,
|
||||
"declaration": true,
|
||||
"noImplicitAny": false,
|
||||
"rootDir": "src",
|
||||
"outDir": "dist",
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"experimentalDecorators": true,
|
||||
"pretty": true,
|
||||
"removeComments": true,
|
||||
"jsx": "react"
|
||||
},
|
||||
"exclude": [
|
||||
"typings/globals",
|
||||
"docs",
|
||||
"typings/modules",
|
||||
"node_modules",
|
||||
"dist",
|
||||
"lib",
|
||||
"test/fixtures"
|
||||
],
|
||||
"compileOnSave": true
|
||||
}
|
@ -1,142 +0,0 @@
|
||||
{
|
||||
"rules": {
|
||||
"align": [
|
||||
false,
|
||||
"parameters",
|
||||
"arguments",
|
||||
"statements"
|
||||
],
|
||||
"ban": false,
|
||||
"class-name": true,
|
||||
"curly": false,
|
||||
"eofline": true,
|
||||
"forin": false,
|
||||
"indent": [
|
||||
true,
|
||||
"spaces"
|
||||
],
|
||||
"interface-name": [false],
|
||||
"jsdoc-format": true,
|
||||
"label-position": true,
|
||||
"label-undefined": true,
|
||||
"max-line-length": [
|
||||
true,
|
||||
140
|
||||
],
|
||||
"member-access": false,
|
||||
"member-ordering": [
|
||||
true,
|
||||
"private-before-public",
|
||||
"static-before-instance",
|
||||
"variables-before-functions"
|
||||
],
|
||||
"no-any": false,
|
||||
"no-arg": true,
|
||||
"no-bitwise": true,
|
||||
"no-conditional-assignment": true,
|
||||
"no-consecutive-blank-lines": false,
|
||||
"no-console": [
|
||||
true,
|
||||
"log",
|
||||
"debug",
|
||||
"info",
|
||||
"time",
|
||||
"timeEnd",
|
||||
"trace"
|
||||
],
|
||||
"no-construct": true,
|
||||
"no-constructor-vars": true,
|
||||
"no-debugger": true,
|
||||
"no-duplicate-key": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-empty": true,
|
||||
"no-eval": true,
|
||||
"no-inferrable-types": false,
|
||||
"no-internal-module": true,
|
||||
"no-null-keyword": false,
|
||||
"no-require-imports": false,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-trailing-whitespace": true,
|
||||
"no-unreachable": true,
|
||||
"no-unused-expression": true,
|
||||
"no-unused-variable": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-var-keyword": true,
|
||||
"no-var-requires": true,
|
||||
"object-literal-sort-keys": false,
|
||||
"one-line": [
|
||||
true,
|
||||
"check-open-brace",
|
||||
"check-catch",
|
||||
"check-else",
|
||||
"check-finally",
|
||||
"check-whitespace"
|
||||
],
|
||||
"quotemark": [
|
||||
true,
|
||||
"double",
|
||||
"avoid-escape"
|
||||
],
|
||||
"radix": true,
|
||||
"semicolon": [
|
||||
true,
|
||||
"always"
|
||||
],
|
||||
"switch-default": true,
|
||||
"trailing-comma": [
|
||||
true,
|
||||
{
|
||||
"multiline": "always",
|
||||
"singleline": "never"
|
||||
}
|
||||
],
|
||||
"triple-equals": [
|
||||
true,
|
||||
"allow-null-check"
|
||||
],
|
||||
"typedef": [
|
||||
false,
|
||||
"call-signature",
|
||||
"parameter",
|
||||
"arrow-parameter",
|
||||
"property-declaration",
|
||||
"variable-declaration",
|
||||
"member-variable-declaration"
|
||||
],
|
||||
"typedef-whitespace": [
|
||||
true,
|
||||
{
|
||||
"call-signature": "nospace",
|
||||
"index-signature": "nospace",
|
||||
"parameter": "nospace",
|
||||
"property-declaration": "nospace",
|
||||
"variable-declaration": "nospace"
|
||||
},
|
||||
{
|
||||
"call-signature": "space",
|
||||
"index-signature": "space",
|
||||
"parameter": "space",
|
||||
"property-declaration": "space",
|
||||
"variable-declaration": "space"
|
||||
}
|
||||
],
|
||||
"use-strict": [
|
||||
false
|
||||
],
|
||||
"variable-name": [
|
||||
false,
|
||||
"check-format",
|
||||
"allow-leading-underscore",
|
||||
"ban-keywords"
|
||||
],
|
||||
"whitespace": [
|
||||
true,
|
||||
"check-branch",
|
||||
"check-decl",
|
||||
"check-operator",
|
||||
"check-separator",
|
||||
"check-type"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
{
|
||||
"globalDependencies": {
|
||||
"expect": "registry:dt/expect#1.13.4+20160316155526",
|
||||
"jest": "registry:dt/jest#0.9.0+20160706021812",
|
||||
"node": "registry:env/node#6.0.0+20160723033700"
|
||||
},
|
||||
"devDependencies": {
|
||||
"enzyme": "registry:npm/enzyme#2.2.0+20160322031343"
|
||||
},
|
||||
"dependencies": {
|
||||
"lodash": "registry:npm/lodash#4.0.0+20160723033700",
|
||||
"object-assign": "registry:npm/object-assign#4.0.1+20160301180549",
|
||||
"react": "registry:npm/react#15.0.1+20160601175240",
|
||||
"react-dom": "registry:npm/react-dom#15.0.1+20160705210405"
|
||||
}
|
||||
}
|
@ -1,68 +0,0 @@
|
||||
// Generated by typings
|
||||
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/expect/expect.d.ts
|
||||
declare module "expect" {
|
||||
export class Expectation {
|
||||
constructor(actual:any);
|
||||
toExist(message?:string):Expectation;
|
||||
toBeTruthy(message?:string):Expectation;
|
||||
toNotExist(message?:string):Expectation;
|
||||
toBeFalsy(message?:string):Expectation;
|
||||
toBe(value:any, message?:string):Expectation;
|
||||
toNotBe(value:any, message?:string):Expectation;
|
||||
toEqual(value:any, message?:string):Expectation;
|
||||
toNotEqual(value:any, message?:string):Expectation;
|
||||
toThrow(value?:any, message?:string):Expectation;
|
||||
toNotThrow(value?:any, message?:string):Expectation;
|
||||
toBeA(value:any, message?:string):Expectation;
|
||||
toBeAn(value:any, message?:string):Expectation;
|
||||
toNotBeA(value:any, message?:string):Expectation;
|
||||
toNotBeAn(value:any, message?:string):Expectation;
|
||||
toMatch(value:any, message?:string):Expectation;
|
||||
toNotMatch(value:any, message?:string):Expectation;
|
||||
toBeLessThan(value:any, message?:string):Expectation;
|
||||
toBeFewerThan(value:any, message?:string):Expectation;
|
||||
toBeGreaterThan(value:any, message?:string):Expectation;
|
||||
toBeMoreThan(value:any, message?:string):Expectation;
|
||||
toInclude(value:any, compareValues?:any, message?:string):Expectation;
|
||||
toContain(value:any, compareValues?:any, message?:string):Expectation;
|
||||
toExclude(value:any, compareValues?:any, message?:string):Expectation;
|
||||
toNotContain(value:any, compareValues?:any, message?:string):Expectation;
|
||||
toHaveBeenCalled(message?:string):Expectation;
|
||||
toHaveBeenCalledWith(...args:Array<any>):Expectation;
|
||||
toNotHaveBeenCalled(message?:string):Expectation;
|
||||
withContext(context:any):Expectation;
|
||||
withArgs(...args:Array<any>):Expectation;
|
||||
}
|
||||
|
||||
export interface Extension {
|
||||
[name:string]:(args?:Array<any>) => void;
|
||||
}
|
||||
|
||||
export interface Call {
|
||||
context: Spy;
|
||||
arguments: Array<any>;
|
||||
}
|
||||
|
||||
export interface Spy {
|
||||
__isSpy:Boolean;
|
||||
calls:Array<Call>;
|
||||
andCall(fn:Function):Spy;
|
||||
andCallThrough():Spy;
|
||||
andThrow(object:Object):Spy;
|
||||
andReturn(value:any):Spy;
|
||||
getLastCall():Call;
|
||||
restore():void;
|
||||
destroy():void;
|
||||
}
|
||||
|
||||
function expect(actual:any):Expectation;
|
||||
|
||||
export function createSpy(fn?:Function, restore?:Function):Spy;
|
||||
export function spyOn(object:Object, methodName:string):Spy;
|
||||
export function isSpy(object:any):Boolean;
|
||||
export function restoreSpies():void;
|
||||
export function assert(condition:any, messageFormat:string, ...extraArgs:Array<any>):void;
|
||||
export function extend(extension:Extension):void;
|
||||
|
||||
export default expect;
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/expect/expect.d.ts",
|
||||
"raw": "registry:dt/expect#1.13.4+20160316155526",
|
||||
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/expect/expect.d.ts"
|
||||
}
|
||||
}
|
120
addons/background/typings/globals/jest/index.d.ts
vendored
120
addons/background/typings/globals/jest/index.d.ts
vendored
@ -1,120 +0,0 @@
|
||||
// Generated by typings
|
||||
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a14e3e7bca87cead0c25b187f510de34089b9ed7/jest/jest.d.ts
|
||||
declare function afterEach(fn: jest.EmptyFunction): void;
|
||||
declare function beforeEach(fn: jest.EmptyFunction): void;
|
||||
declare function describe(name: string, fn: jest.EmptyFunction): void;
|
||||
declare var it: jest.It;
|
||||
declare function pit(name: string, fn: jest.EmptyFunction): void;
|
||||
|
||||
declare function xdescribe(name: string, fn: jest.EmptyFunction): void;
|
||||
declare function xit(name: string, fn: jest.EmptyFunction): void;
|
||||
|
||||
declare function expect(actual: any): jest.Matchers;
|
||||
|
||||
interface NodeRequire {
|
||||
requireActual(moduleName: string): any;
|
||||
}
|
||||
|
||||
declare namespace jest {
|
||||
function addMatchers(matchers: CustomMatcherFactories): void;
|
||||
function autoMockOff(): void;
|
||||
function autoMockOn(): void;
|
||||
function clearAllTimers(): void;
|
||||
function currentTestPath(): string;
|
||||
function disableAutomock(): void;
|
||||
function fn<T>(implementation?: Function): Mock<T>;
|
||||
function dontMock(moduleName: string): void;
|
||||
function genMockFromModule<T>(moduleName: string): Mock<T>;
|
||||
function mock(moduleName: string, factory?: Function): void;
|
||||
function runAllTicks(): void;
|
||||
function runAllTimers(): void;
|
||||
function runOnlyPendingTimers(): void;
|
||||
function setMock<T>(moduleName: string, moduleExports: T): void;
|
||||
function unmock(moduleName: string): void;
|
||||
|
||||
interface EmptyFunction {
|
||||
(): void;
|
||||
}
|
||||
|
||||
interface Matchers {
|
||||
not: Matchers;
|
||||
toThrow(expected?: any): boolean;
|
||||
toBe(expected: any): boolean;
|
||||
toEqual(expected: any): boolean;
|
||||
toBeFalsy(): boolean;
|
||||
toBeTruthy(): boolean;
|
||||
toBeNull(): boolean;
|
||||
toBeDefined(): boolean;
|
||||
toBeUndefined(): boolean;
|
||||
toMatch(expected: RegExp): boolean;
|
||||
toContain(expected: string): boolean;
|
||||
toBeCloseTo(expected: number, delta: number): boolean;
|
||||
toBeGreaterThan(expected: number): boolean;
|
||||
toBeLessThan(expected: number): boolean;
|
||||
toBeCalled(): boolean;
|
||||
toBeCalledWith(...args: any[]): boolean;
|
||||
lastCalledWith(...args: any[]): boolean;
|
||||
}
|
||||
|
||||
interface It {
|
||||
(name: string, fn: EmptyFunction): void;
|
||||
only(name: string, fn: EmptyFunction): void;
|
||||
}
|
||||
|
||||
interface Mock<T> {
|
||||
new (): T;
|
||||
(...args: any[]): any; // TODO please fix this line! added for TypeScript 1.1.0-1 https://github.com/DefinitelyTyped/DefinitelyTyped/pull/2932
|
||||
mock: MockContext<T>;
|
||||
mockClear(): void;
|
||||
mockImplementation(fn: Function): Mock<T>;
|
||||
mockImpl(fn: Function): Mock<T>;
|
||||
mockReturnThis(): Mock<T>;
|
||||
mockReturnValue(value: any): Mock<T>;
|
||||
mockReturnValueOnce(value: any): Mock<T>;
|
||||
}
|
||||
|
||||
interface MockContext<T> {
|
||||
calls: any[][];
|
||||
instances: T[];
|
||||
}
|
||||
|
||||
// taken from Jasmine since addMatchers calls into the jasmine api
|
||||
interface CustomMatcherFactories {
|
||||
[index: string]: CustomMatcherFactory;
|
||||
}
|
||||
|
||||
// taken from Jasmine since addMatchers calls into the jasmine api
|
||||
interface CustomMatcherFactory {
|
||||
(util: MatchersUtil, customEqualityTesters: Array<CustomEqualityTester>): CustomMatcher;
|
||||
}
|
||||
|
||||
// taken from Jasmine since addMatchers calls into the jasmine api
|
||||
interface MatchersUtil {
|
||||
equals(a: any, b: any, customTesters?: Array<CustomEqualityTester>): boolean;
|
||||
contains<T>(haystack: ArrayLike<T> | string, needle: any, customTesters?: Array<CustomEqualityTester>): boolean;
|
||||
buildFailureMessage(matcherName: string, isNot: boolean, actual: any, ...expected: Array<any>): string;
|
||||
}
|
||||
|
||||
// taken from Jasmine since addMatchers calls into the jasmine api
|
||||
interface CustomEqualityTester {
|
||||
(first: any, second: any): boolean;
|
||||
}
|
||||
|
||||
// taken from Jasmine since addMatchers calls into the jasmine api
|
||||
interface CustomMatcher {
|
||||
compare<T>(actual: T, expected: T): CustomMatcherResult;
|
||||
compare(actual: any, expected: any): CustomMatcherResult;
|
||||
}
|
||||
|
||||
// taken from Jasmine since addMatchers calls into the jasmine api
|
||||
interface CustomMatcherResult {
|
||||
pass: boolean;
|
||||
message: string;
|
||||
}
|
||||
|
||||
// taken from Jasmine which takes from TypeScript lib.core.es6.d.ts, applicable to CustomMatchers.contains()
|
||||
interface ArrayLike<T> {
|
||||
length: number;
|
||||
[n: number]: T;
|
||||
}
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a14e3e7bca87cead0c25b187f510de34089b9ed7/jest/jest.d.ts",
|
||||
"raw": "registry:dt/jest#0.9.0+20160706021812",
|
||||
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a14e3e7bca87cead0c25b187f510de34089b9ed7/jest/jest.d.ts"
|
||||
}
|
||||
}
|
2475
addons/background/typings/globals/node/index.d.ts
vendored
2475
addons/background/typings/globals/node/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -1,14 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/types/env-node/252791c3e37ad437365f1b4b27237c2028b2187d/6/typings.json",
|
||||
"raw": "registry:env/node#6.0.0+20160723033700",
|
||||
"version": "6",
|
||||
"files": [
|
||||
"node.d.ts"
|
||||
],
|
||||
"global": false,
|
||||
"name": "node",
|
||||
"type": "typings"
|
||||
}
|
||||
}
|
8
addons/background/typings/index.d.ts
vendored
8
addons/background/typings/index.d.ts
vendored
@ -1,8 +0,0 @@
|
||||
/// <reference path="globals/expect/index.d.ts" />
|
||||
/// <reference path="globals/jest/index.d.ts" />
|
||||
/// <reference path="globals/node/index.d.ts" />
|
||||
/// <reference path="modules/enzyme/index.d.ts" />
|
||||
/// <reference path="modules/lodash/index.d.ts" />
|
||||
/// <reference path="modules/object-assign/index.d.ts" />
|
||||
/// <reference path="modules/react-dom/index.d.ts" />
|
||||
/// <reference path="modules/react/index.d.ts" />
|
352
addons/background/typings/modules/enzyme/index.d.ts
vendored
352
addons/background/typings/modules/enzyme/index.d.ts
vendored
@ -1,352 +0,0 @@
|
||||
// Generated by typings
|
||||
// Source: https://raw.githubusercontent.com/asvetliakov/typings-enzyme/da15db2a4042e3b1f454aebdec9484e51de46c0a/index.d.ts
|
||||
declare module 'enzyme' {
|
||||
/**
|
||||
* This is copied from:
|
||||
* https://github.com/DefinitelyTyped/DefinitelyTyped/blob/732748384322640244af4e61414de427e2f55e1e/enzyme/enzyme.d.ts
|
||||
* Differences:
|
||||
* 1) use string instead String
|
||||
* 2) Fixed EnzymeSelector type: Added StatelessComponent and property map
|
||||
*/
|
||||
import {ReactElement, Component, ComponentClass, StatelessComponent} from 'react';
|
||||
|
||||
namespace Enzyme {
|
||||
/**
|
||||
* Many methods in Enzyme's API accept a selector as an argument. Selectors in Enzyme can fall into one of the
|
||||
* following three categories:
|
||||
*
|
||||
* 1. A Valid CSS Selector
|
||||
* 2. A React Component Constructor
|
||||
* 3. A React Component's displayName
|
||||
* 4. A React Stateless component
|
||||
* 5. A React component property map
|
||||
*/
|
||||
export type EnzymeSelector = string | StatelessComponent<any> | ComponentClass<any> | {[key: string]: any};
|
||||
|
||||
interface CommonWrapper<T, P, S> {
|
||||
/**
|
||||
* Find every node in the render tree that matches the provided selector.
|
||||
* @param selector The selector to match.
|
||||
*/
|
||||
find(selector: EnzymeSelector): T;
|
||||
|
||||
/**
|
||||
* Finds every node in the render tree that returns true for the provided predicate function.
|
||||
* @param predicate
|
||||
*/
|
||||
findWhere(predicate: (shallowWrapper: ShallowWrapper<P, S>) => Boolean): T;
|
||||
|
||||
/**
|
||||
* Removes nodes in the current wrapper that do not match the provided selector.
|
||||
* @param selector The selector to match.
|
||||
*/
|
||||
filter(selector: EnzymeSelector): T;
|
||||
|
||||
/**
|
||||
* Returns a new wrapper with only the nodes of the current wrapper that, when passed into the provided predicate function, return true.
|
||||
* @param predicate
|
||||
*/
|
||||
filterWhere(predicate: (shallowWrapper: ShallowWrapper<P, S>) => Boolean): T;
|
||||
|
||||
/**
|
||||
* Returns whether or not the current wrapper has a node anywhere in it's render tree that looks like the one passed in.
|
||||
* @param node
|
||||
*/
|
||||
contains(node: ReactElement<any>): Boolean;
|
||||
|
||||
/**
|
||||
* Returns whether or not the current node has a className prop including the passed in class name.
|
||||
* @param className
|
||||
*/
|
||||
hasClass(className: string): Boolean;
|
||||
|
||||
/**
|
||||
* Returns whether or not the current node matches a provided selector.
|
||||
* @param selector
|
||||
*/
|
||||
is(selector: EnzymeSelector): Boolean;
|
||||
|
||||
/**
|
||||
* Returns a new wrapper with only the nodes of the current wrapper that don't match the provided selector.
|
||||
* This method is effectively the negation or inverse of filter.
|
||||
* @param selector
|
||||
*/
|
||||
not(selector: EnzymeSelector): T;
|
||||
|
||||
/**
|
||||
* Returns a new wrapper with all of the children of the node(s) in the current wrapper. Optionally, a selector
|
||||
* can be provided and it will filter the children by this selector.
|
||||
* @param [selector]
|
||||
*/
|
||||
children(selector?: EnzymeSelector): T;
|
||||
|
||||
/**
|
||||
* Shorthand for children().at(index)
|
||||
* @param index
|
||||
*/
|
||||
childAt(index: number): T;
|
||||
|
||||
|
||||
/**
|
||||
* Returns a wrapper around all of the parents/ancestors of the wrapper. Does not include the node in the
|
||||
* current wrapper. Optionally, a selector can be provided and it will filter the parents by this selector.
|
||||
*
|
||||
* Note: can only be called on a wrapper of a single node.
|
||||
* @param [selector]
|
||||
*/
|
||||
parents(selector?: EnzymeSelector): T;
|
||||
|
||||
/**
|
||||
* Returns a wrapper with the direct parent of the node in the current wrapper.
|
||||
*/
|
||||
parent(): T;
|
||||
|
||||
/**
|
||||
* Returns a wrapper of the first element that matches the selector by traversing up through the current node's
|
||||
* ancestors in the tree, starting with itself.
|
||||
*
|
||||
* Note: can only be called on a wrapper of a single node.
|
||||
* @param selector
|
||||
*/
|
||||
closest(selector: EnzymeSelector): T;
|
||||
|
||||
/**
|
||||
* Returns a string of the rendered text of the current render tree. This function should be looked at with
|
||||
* skepticism if being used to test what the actual HTML output of the component will be. If that is what you
|
||||
* would like to test, use enzyme's render function instead.
|
||||
*
|
||||
* Note: can only be called on a wrapper of a single node.
|
||||
*/
|
||||
text(): string;
|
||||
|
||||
/**
|
||||
* Returns a string of the rendered HTML markup of the current render tree.
|
||||
*
|
||||
* Note: can only be called on a wrapper of a single node.
|
||||
*/
|
||||
html(): string;
|
||||
|
||||
/**
|
||||
* Returns the node at a given index of the current wrapper.
|
||||
* @param index
|
||||
*/
|
||||
get(index: number): ReactElement<any>;
|
||||
|
||||
/**
|
||||
* Returns a wrapper around the node at a given index of the current wrapper.
|
||||
* @param index
|
||||
*/
|
||||
at(index: number): T;
|
||||
|
||||
/**
|
||||
* Reduce the set of matched nodes to the first in the set.
|
||||
*/
|
||||
first(): T;
|
||||
|
||||
/**
|
||||
* Reduce the set of matched nodes to the last in the set.
|
||||
*/
|
||||
last(): T;
|
||||
|
||||
/**
|
||||
* Returns the state hash for the root node of the wrapper. Optionally pass in a prop name and it will return just that value.
|
||||
* @param [key]
|
||||
*/
|
||||
state(key?: string): any;
|
||||
|
||||
/**
|
||||
* Returns the props hash for the current node of the wrapper.
|
||||
*
|
||||
* NOTE: can only be called on a wrapper of a single node.
|
||||
*/
|
||||
props(): Object;
|
||||
|
||||
/**
|
||||
* Returns the prop value for the node of the current wrapper with the provided key.
|
||||
*
|
||||
* NOTE: can only be called on a wrapper of a single node.
|
||||
* @param key
|
||||
*/
|
||||
prop(key: string): any;
|
||||
|
||||
/**
|
||||
* Simulate events.
|
||||
* Returns itself.
|
||||
* @param event
|
||||
* @param args?
|
||||
*/
|
||||
simulate(event: string, ...args: any[]): T;
|
||||
|
||||
/**
|
||||
* A method to invoke setState() on the root component instance similar to how you might in the definition of
|
||||
* the component, and re-renders. This method is useful for testing your component in hard to achieve states,
|
||||
* however should be used sparingly. If possible, you should utilize your component's external API in order to
|
||||
* get it into whatever state you want to test, in order to be as accurate of a test as possible. This is not
|
||||
* always practical, however.
|
||||
* Returns itself.
|
||||
*
|
||||
* NOTE: can only be called on a wrapper instance that is also the root instance.
|
||||
* @param state
|
||||
*/
|
||||
setState(state: S): T;
|
||||
|
||||
/**
|
||||
* A method that sets the props of the root component, and re-renders. Useful for when you are wanting to test
|
||||
* how the component behaves over time with changing props. Calling this, for instance, will call the
|
||||
* componentWillReceiveProps lifecycle method.
|
||||
*
|
||||
* Similar to setState, this method accepts a props object and will merge it in with the already existing props.
|
||||
* Returns itself.
|
||||
*
|
||||
* NOTE: can only be called on a wrapper instance that is also the root instance.
|
||||
* @param state
|
||||
*/
|
||||
setProps(state: Object): T;
|
||||
|
||||
/**
|
||||
* A method that sets the context of the root component, and re-renders. Useful for when you are wanting to
|
||||
* test how the component behaves over time with changing contexts.
|
||||
* Returns itself.
|
||||
*
|
||||
* NOTE: can only be called on a wrapper instance that is also the root instance.
|
||||
* @param state
|
||||
*/
|
||||
setContext(state: Object): T;
|
||||
|
||||
/**
|
||||
* Gets the instance of the component being rendered as the root node passed into shallow().
|
||||
*
|
||||
* NOTE: can only be called on a wrapper instance that is also the root instance.
|
||||
*/
|
||||
instance(): Component<P, S>;
|
||||
|
||||
/**
|
||||
* Forces a re-render. Useful to run before checking the render output if something external may be updating
|
||||
* the state of the component somewhere.
|
||||
* Returns itself.
|
||||
*
|
||||
* NOTE: can only be called on a wrapper instance that is also the root instance.
|
||||
*/
|
||||
update(): T;
|
||||
|
||||
/**
|
||||
* Returns an html-like string of the wrapper for debugging purposes. Useful to print out to the console when
|
||||
* tests are not passing when you expect them to.
|
||||
*/
|
||||
debug(): string;
|
||||
|
||||
/**
|
||||
* Returns the type of the current node of this wrapper. If it's a composite component, this will be the
|
||||
* component constructor. If it's native DOM node, it will be a string of the tag name.
|
||||
*
|
||||
* Note: can only be called on a wrapper of a single node.
|
||||
*/
|
||||
type(): string | Function;
|
||||
|
||||
/**
|
||||
* Iterates through each node of the current wrapper and executes the provided function with a wrapper around
|
||||
* the corresponding node passed in as the first argument.
|
||||
*
|
||||
* Returns itself.
|
||||
* @param fn A callback to be run for every node in the collection. Should expect a ShallowWrapper as the first
|
||||
* argument, and will be run with a context of the original instance.
|
||||
*/
|
||||
forEach(fn: (wrapper: ShallowWrapper<P, S>) => void): T;
|
||||
|
||||
/**
|
||||
* Maps the current array of nodes to another array. Each node is passed in as a ShallowWrapper to the map
|
||||
* function.
|
||||
* Returns an array of the returned values from the mapping function..
|
||||
* @param fn A mapping function to be run for every node in the collection, the results of which will be mapped
|
||||
* to the returned array. Should expect a ShallowWrapper as the first argument, and will be run
|
||||
* with a context of the original instance.
|
||||
*/
|
||||
map(fn: (wrapper: ShallowWrapper<P, S>) => any): Array<any>;
|
||||
|
||||
/**
|
||||
* Applies the provided reducing function to every node in the wrapper to reduce to a single value. Each node
|
||||
* is passed in as a ShallowWrapper, and is processed from left to right.
|
||||
* @param fn
|
||||
* @param initialValue
|
||||
*/
|
||||
reduce<R>(fn: (prevVal: R, wrapper: ShallowWrapper<P, S>, index: number) => R, initialValue?: R): R[];
|
||||
|
||||
/**
|
||||
* Applies the provided reducing function to every node in the wrapper to reduce to a single value.
|
||||
* Each node is passed in as a ShallowWrapper, and is processed from right to left.
|
||||
* @param fn
|
||||
* @param initialValue
|
||||
*/
|
||||
reduceRight<R>(fn: (prevVal: R, wrapper: ShallowWrapper<P, S>, index: number) => R, initialValue?: R): R[];
|
||||
|
||||
/**
|
||||
* Returns whether or not any of the nodes in the wrapper match the provided selector.
|
||||
* @param selector
|
||||
*/
|
||||
some(selector: EnzymeSelector): Boolean;
|
||||
|
||||
/**
|
||||
* Returns whether or not any of the nodes in the wrapper pass the provided predicate function.
|
||||
* @param fn
|
||||
*/
|
||||
someWhere(fn: (wrapper: ShallowWrapper<P, S>) => Boolean): Boolean;
|
||||
|
||||
/**
|
||||
* Returns whether or not all of the nodes in the wrapper match the provided selector.
|
||||
* @param selector
|
||||
*/
|
||||
every(selector: EnzymeSelector): Boolean;
|
||||
|
||||
/**
|
||||
* Returns whether or not any of the nodes in the wrapper pass the provided predicate function.
|
||||
* @param fn
|
||||
*/
|
||||
everyWhere(fn: (wrapper: ShallowWrapper<P, S>) => Boolean): Boolean;
|
||||
|
||||
length: number;
|
||||
}
|
||||
|
||||
export interface ShallowWrapper<P, S> extends CommonWrapper<ShallowWrapper<P, S>, P, S> {
|
||||
shallow(options?: { context?: any }): ShallowWrapper<P, S>;
|
||||
unmount(): ShallowWrapper<P, S>;
|
||||
|
||||
render(): CheerioWrapper<P, S>;
|
||||
}
|
||||
|
||||
export interface ReactWrapper<P, S> extends CommonWrapper<ReactWrapper<P, S>, P, S> {
|
||||
unmount(): ReactWrapper<P, S>;
|
||||
}
|
||||
|
||||
export interface CheerioWrapper<P, S> extends CommonWrapper<CheerioWrapper<P, S>, P, S> {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Shallow rendering is useful to constrain yourself to testing a component as a unit, and to ensure that
|
||||
* your tests aren't indirectly asserting on behavior of child components.
|
||||
* @param node
|
||||
* @param [options]
|
||||
*/
|
||||
export function shallow<P, S>(node: ReactElement<P>, options?: any): ShallowWrapper<P, S>;
|
||||
|
||||
/**
|
||||
* Mounts and renders a react component into the document and provides a testing wrapper around it.
|
||||
* @param node
|
||||
* @param [options]
|
||||
*/
|
||||
export function mount<P, S>(node: ReactElement<P>, options?: any): ReactWrapper<P, S>;
|
||||
|
||||
/**
|
||||
* Render react components to static HTML and analyze the resulting HTML structure.
|
||||
* @param node
|
||||
* @param [options]
|
||||
*/
|
||||
export function render<P, S>(node: ReactElement<P>, options?: any): CheerioWrapper<P, S>;
|
||||
|
||||
export function describeWithDOM(description: string, fn: Function): void;
|
||||
|
||||
export function spyLifecycle(component: typeof Component): void;
|
||||
}
|
||||
|
||||
export = Enzyme;
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/asvetliakov/typings-enzyme/da15db2a4042e3b1f454aebdec9484e51de46c0a/typings.json",
|
||||
"raw": "registry:npm/enzyme#2.2.0+20160322031343",
|
||||
"main": "index.d.ts",
|
||||
"global": false,
|
||||
"name": "enzyme",
|
||||
"type": "typings"
|
||||
}
|
||||
}
|
18545
addons/background/typings/modules/lodash/index.d.ts
vendored
18545
addons/background/typings/modules/lodash/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -1,12 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/types/npm-lodash/9b83559bbd3454f0cd9e4020c920e36eee80d5a3/typings.json",
|
||||
"raw": "registry:npm/lodash#4.0.0+20160723033700",
|
||||
"main": "index.d.ts",
|
||||
"version": "4.0.0",
|
||||
"global": false,
|
||||
"name": "lodash",
|
||||
"type": "typings"
|
||||
}
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
// Generated by typings
|
||||
// Source: https://raw.githubusercontent.com/louy/typed-object-assign/91dd2548172cee5dc0aa531d1b452a76044dbff2/index.d.ts
|
||||
declare module 'object-assign' {
|
||||
function assign<A extends Object>(a: A): A;
|
||||
function assign<A extends Object, B>(a: A, b: B): A & B;
|
||||
function assign<A extends Object, B, C>(a: A, b: B, c: C): A & B & C;
|
||||
function assign<A extends Object, B, C, D>(a: A, b: B, c: C, d: D): A & B & C & D;
|
||||
function assign<A extends Object, B, C, D, E>(a: A, b: B, c: C, d: D, e: E): A & B & C & D & E;
|
||||
function assign<A extends Object>(...a: A[]): A;
|
||||
|
||||
export = assign;
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/louy/typed-object-assign/91dd2548172cee5dc0aa531d1b452a76044dbff2/typings.json",
|
||||
"raw": "registry:npm/object-assign#4.0.1+20160301180549",
|
||||
"main": "index.d.ts",
|
||||
"version": "4.0.1",
|
||||
"global": false,
|
||||
"name": "object-assign",
|
||||
"type": "typings"
|
||||
}
|
||||
}
|
2400
addons/background/typings/modules/react-dom/index.d.ts
vendored
2400
addons/background/typings/modules/react-dom/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -1,21 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/cantide5ga/typed-react-dom/6e13759a4ab84e31fec83b51ce3b4a96f4f6eab9/typings.json",
|
||||
"raw": "registry:npm/react-dom#15.0.1+20160705210405",
|
||||
"main": "react-dom.d.ts",
|
||||
"global": false,
|
||||
"dependencies": {
|
||||
"react": {
|
||||
"src": "https://raw.githubusercontent.com/cantide5ga/typed-react/42692d400db3c333394ec75bce9f6d09b5a0a769/typings.json",
|
||||
"raw": "github:cantide5ga/typed-react#42692d400db3c333394ec75bce9f6d09b5a0a769",
|
||||
"main": "react.d.ts",
|
||||
"global": false,
|
||||
"name": "react",
|
||||
"type": "typings"
|
||||
}
|
||||
},
|
||||
"name": "react-dom",
|
||||
"type": "typings"
|
||||
}
|
||||
}
|
2323
addons/background/typings/modules/react/index.d.ts
vendored
2323
addons/background/typings/modules/react/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -1,11 +0,0 @@
|
||||
{
|
||||
"resolution": "main",
|
||||
"tree": {
|
||||
"src": "https://raw.githubusercontent.com/cantide5ga/typed-react/42692d400db3c333394ec75bce9f6d09b5a0a769/typings.json",
|
||||
"raw": "registry:npm/react#15.0.1+20160601175240",
|
||||
"main": "react.d.ts",
|
||||
"global": false,
|
||||
"name": "react",
|
||||
"type": "typings"
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user