Skip to content

Commit

Permalink
feat(#61): doc
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed May 29, 2024
1 parent 2c3efb4 commit 93d8dcb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion eo2js-runtime/test/fake/org/eolang/cage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

/**
* Fake CAGE EO object that is used for the test purposes.
* Don't change the file until you definitely know what you're doing.
* For more information please read README.md in test/fake folder
* @return {Object} - Object
*/
const cage = function() {
const object = require('../../../runtime/object')
const attr = require('../../../runtime/attribute/attr')
Expand Down Expand Up @@ -30,6 +35,12 @@ const cage = function() {
return obj
}

/**
* Fake CAGE.ENCAGED EO object that is used for the test purposes.
* Don't change the file until you definitely know what you're doing.
* For more information please read README.md in test/fake folder
* @return {Object} - Object
*/
const cage$encaged = function() {
const object = require('../../../runtime/object')
const attr = require('../../../runtime/attribute/attr')
Expand Down Expand Up @@ -60,4 +71,5 @@ const cage$encaged = function() {
)
return obj
}

module.exports = cage

0 comments on commit 93d8dcb

Please sign in to comment.