summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/endsWith/String.prototype.endsWith_Fail.js
blob: 6c130e22973c6d78266fb51a0cc863757d0f49c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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 false when called on 'word' and passed 'r'.
features: [String.prototype.endsWith]
---*/

assert.sameValue('word'.endsWith('r'), false, '"word".endsWith("r")');

reportCompare(0, 0);