Skip to content

Commit 93aa090

Browse files
committed
Follow up to provide test name
1 parent 243bb3a commit 93aa090

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

__tests__/issues.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,11 @@ describe('Issue #1247', () => {
7979
});
8080

8181
describe('Issue #1252', () => {
82-
const prototypelessObj = Object.create(null);
83-
const list = List([prototypelessObj]);
84-
expect(list.toString()).toBe('List [ {} ]');
82+
it('should be toString-able even if it contains a value which is not', () => {
83+
const prototypelessObj = Object.create(null);
84+
const list = List([prototypelessObj]);
85+
expect(list.toString()).toBe('List [ {} ]');
86+
});
8587
});
8688

8789
describe('Issue #1293', () => {

0 commit comments

Comments
 (0)