Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit 36720b9

Browse files
committed
Fix spec in react v13 & v14
1 parent cefbe2e commit 36720b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/react/dsl_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def render
6565
end
6666
end
6767

68-
expect(React.render_to_static_markup(React.create_element(Foo))).to eq('<input data-foo="12"/>')
68+
expect(React.render_to_static_markup(React.create_element(Foo))).to match(/<input data-foo="12"(\/)?>/)
6969
end
7070

7171
it "will turn the last string in a block into a element" do

spec/react/element_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def render
2929
end
3030
end
3131

32-
expect(React.render_to_static_markup(React.create_element(Foo))).to eq('<input type="text" value=""/>')
32+
expect(React.render_to_static_markup(React.create_element(Foo))).to match(/<input (type="text" value=""|value="" type="text")(\/)?>/)
3333
end
3434
end
3535

0 commit comments

Comments
 (0)