summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/endsWith/String.prototype.endsWith_Success_3.js
blob: 9d2a03a6726ebd83eef38bf8c74937329b479370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2014 Ryan Lewis. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
author: Ryan Lewis
description: >
    endsWith should return true when called on 'word' and passed 'd'
    and with an endPosition of 25.
features: [String.prototype.endsWith]
---*/

assert.sameValue('word'.endsWith('d', 25), true, '"word".endsWith("d", 25)');

reportCompare(0, 0);