diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/jqLiteSpec.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/jqLiteSpec.js b/test/jqLiteSpec.js index 7412c8c4..6aafd1f8 100644 --- a/test/jqLiteSpec.js +++ b/test/jqLiteSpec.js @@ -1023,6 +1023,18 @@ describe('jqLite', function() { expect(root.prepend('abc')).toEqual(root); expect(root.html().toLowerCase()).toEqual('abctext'); }); + it('should prepend array to empty in the right order', function() { + var root = jqLite('<div>'); + expect(root.prepend([a, b, c])).toBe(root); + expect(sortedHtml(root)). + toBe('<div><div>A</div><div>B</div><div>C</div></div>'); + }); + it('should prepend array to content in the right order', function() { + var root = jqLite('<div>text</div>'); + expect(root.prepend([a, b, c])).toBe(root); + expect(sortedHtml(root)). + toBe('<div><div>A</div><div>B</div><div>C</div>text</div>'); + }); }); |
