8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243bb3a commit 93aa090Copy full SHA for 93aa090
__tests__/issues.ts
@@ -79,9 +79,11 @@ describe('Issue #1247', () => {
79
});
80
81
describe('Issue #1252', () => {
82
- const prototypelessObj = Object.create(null);
83
- const list = List([prototypelessObj]);
84
- expect(list.toString()).toBe('List [ {} ]');
+ it('should be toString-able even if it contains a value which is not', () => {
+ const prototypelessObj = Object.create(null);
+ const list = List([prototypelessObj]);
85
+ expect(list.toString()).toBe('List [ {} ]');
86
+ });
87
88
89
describe('Issue #1293', () => {
0 commit comments