We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cb3e8a commit 5f70ccbCopy full SHA for 5f70ccb
README.md
@@ -8,12 +8,6 @@
8
9
> Css selector for React Components
10
11
-- - -
12
-
13
-**Attention - This project is not completed yet.**
14
15
16
17

18
19
## Motivation
test/injector.js
@@ -174,6 +174,20 @@ describe('injector', () => {
174
baz: React.PropTypes.string,
175
}
176
177
+ constructor(props, context) {
178
+ super(props, context);
179
+ expect(props).toEqual({
180
+ className: 'bar',
181
+ style: 'foo',
182
+ });
183
+ expect(context).toEqual({
184
+ baz: 'lorem ipsum dolor',
185
186
+ expect(this.state).toEqual({
187
+ foo: 'test',
188
189
+ }
190
+
191
state = {
192
foo: 'test',
193
0 commit comments