Skip to content
Snippets Groups Projects
Commit fb52ce9a authored by Brian Terlson's avatar Brian Terlson
Browse files

Merge pull request #350 from pvginkel/missing-features-on-es6-string-functions

ES6 specific functions should declare a feature.
parents 26faeed5 ad1f14c2
No related branches found
No related tags found
No related merge requests found
Showing
with 12 additions and 0 deletions
......@@ -8,6 +8,7 @@
author: Ryan Lewis
description: endsWith should return false when called on 'word' and passed 'r'.
includes: [runTestCase.js]
features: [String#endsWith]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
endsWith should return false when called on 'word' and passed 'd',
with an endPosition of 3.
includes: [runTestCase.js]
features: [String#endsWith]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
endsWith should return true when called on 'word' and passed 'd'
and with no endPosition (defaults to 4).
includes: [runTestCase.js]
features: [String#endsWith]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
endsWith should return true when called on 'word' and passed 'd'
and with an endPosition of 4.
includes: [runTestCase.js]
features: [String#endsWith]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
endsWith should return true when called on 'word' and passed 'd'
and with an endPosition of 25.
includes: [runTestCase.js]
features: [String#endsWith]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
endsWith should return true when called on 'word' and passed 'r',
with an endPosition of 3.
includes: [runTestCase.js]
features: [String#endsWith]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
String should return false if a location is passed that is
greather than the length of the string.
includes: [runTestCase.js]
features: [String#includes]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
String should return false if a letter is not found in the word
starting from the passed location.
includes: [runTestCase.js]
features: [String#includes]
---*/
function testcase() {
......
......@@ -8,6 +8,7 @@
author: Ryan Lewis
description: String should return false if a letter is not found in the word.
includes: [runTestCase.js]
features: [String#includes]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
String should return true when called on 'word' and passed 'w' and
the location 0.
includes: [runTestCase.js]
features: [String#includes]
---*/
function testcase() {
......
......@@ -10,6 +10,7 @@ description: >
String should return true when called on 'word' and passed 'w' and
with no location (defaults to 0).
includes: [runTestCase.js]
features: [String#includes]
---*/
function testcase() {
......
......@@ -8,6 +8,7 @@
author: Ryan Lewis
description: String should have the property length with size of 1.
includes: [runTestCase.js]
features: [String#includes]
---*/
function testcase() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment