mathiasbynens / mathiasbynens/String.prototype.includes
Add more test cases in Array, Object
未关闭
还没有人认领这个 Issue。
- 主要语言
- JavaScript
- 星标
- 70
- 派生
- 10
- PR 合并指标
- 30 天内没有已合并 PR
描述
I understand that searchString is not accepted in RegExp. (TypeError exception)
Throwing an exception if the first argument is a RegExp is specified in order to allow future editions to define extensions that allow such argument values.
But it does accept Array and Object through the method toString under the specification.
which are
// array
['this', 'is', 'an', 'array'].toString(); // => 'this,is,an,array'
// object
({'obj': 'obj'}).toString(); // => '[object Object]'
Therefore, I would like to add more test cases
// array
assertEquals('this,is,an,array').includes(['this', 'is']), true);
assertEquals('this,is,an,array').includes(['this', 'is'], 1), false);
assertEquals('this, is, an, array').includes(['this', 'is']), false);
// object
assertEquals(String.prototype.includes.apply({ 'toString': function () { return '[object Object]'; }}, [{'obj': 'obj'}, 0]), true);
It’s weird if someone input the array or object to the method includes, but it does support.
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
Issue 中没有指定测试文件。找到 String.prototype.includes 的现有测试,并将其断言风格与提议的 Array 和 Object 用例进行比较。先运行该测试套件,然后为所示的转换添加覆盖,并验证这些用例通过。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript
- 领域
- testing-qa
- Issue 类型
- 功能
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100