Skip to content

Commit

Permalink
Remove Markdown from test names
Browse files Browse the repository at this point in the history
I don't think we use this convention anywhere.
  • Loading branch information
gaearon authored and flarnie committed Sep 2, 2017
1 parent 0464fd5 commit acae10d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/renderers/dom/shared/__tests__/ReactDOMAttribute-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe('ReactDOM unknown attribute', () => {
testUnknownAttributeAssignment(false, 'false');
});

it('coerces NaN to strings **and warns**', () => {
it('coerces NaN to strings and warns', () => {
spyOn(console, 'error');

testUnknownAttributeAssignment(NaN, 'NaN');
Expand All @@ -89,7 +89,7 @@ describe('ReactDOM unknown attribute', () => {
expectDev(console.error.calls.count()).toBe(1);
});

it('removes symbols **and warns**', () => {
it('removes symbols and warns', () => {
spyOn(console, 'error');

testUnknownAttributeRemoval(Symbol('foo'));
Expand All @@ -98,7 +98,7 @@ describe('ReactDOM unknown attribute', () => {
expectDev(console.error.calls.count()).toBe(1);
});

it('removes functions **and warns**', () => {
it('removes functions and warns', () => {
spyOn(console, 'error');

testUnknownAttributeRemoval(function someFunction() {});
Expand Down

0 comments on commit acae10d

Please sign in to comment.