summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/repeat/count-is-infinity-throws.js
blob: f8ac8b0eba11aaa02cdf9cf3a283315447e71265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 21.1.3.13
description: >
  Throws a RangeError if count < 0
info: |
  21.1.3.13 String.prototype.repeat ( count )

  7. If n is +∞, throw a RangeError exception.
---*/

assert.throws(RangeError, function() {
  ''.repeat(Infinity);
});

reportCompare(0, 0);