Skip to content

Commit

Permalink
Updating description.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolframkriesing committed Mar 27, 2024
1 parent 3370a17 commit 0977d8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion katas/es1/language/__all__.json
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@
},
{
"name": "`Object()` (as per ES1 spec)",
"description": "",
"description": "The `Object()` constructor called as a function performs a type conversion.",
"path": "object-api/constructor",
"level": "INTERMEDIATE",
"requiresKnowledgeFrom": [],
Expand All @@ -521,6 +521,7 @@
],
"groupName": "Object API",
"groupNameSlug": "object-api",
"publishDateRfc822": "Wed, 27 Mar 2024 22:42:00 GMT",
"id": 20
}
]
Expand Down
3 changes: 2 additions & 1 deletion katas/es1/language/__grouped__.json
Original file line number Diff line number Diff line change
Expand Up @@ -523,10 +523,11 @@
"items": [
{
"name": "`Object()` (as per ES1 spec)",
"description": "",
"description": "The `Object()` constructor called as a function performs a type conversion.",
"path": "object-api/constructor",
"level": "INTERMEDIATE",
"requiresKnowledgeFrom": [],
"publishDateUTC": "2024-03-27T22:42:00.000Z",
"links": [
{
"url": "https://www.ecma-international.org/wp-content/uploads/ECMA-262_1st_edition_june_1997.pdf",
Expand Down
2 changes: 1 addition & 1 deletion katas/es1/language/object-api/constructor.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// To do: make all tests pass, leave the asserts unchanged!
// Follow the hints of the failure messages!

describe('`Object()`', () => {
describe('The `Object()` constructor called as a function', () => {
describe('the basics', () => {
it('WHEN passing no argument to `Object()` THEN a new empty object is returned', () => {
const obj = Array(42);
Expand Down

0 comments on commit 0977d8e

Please sign in to comment.