--- title: Fractran id: 5a7dad05be01840e1778a0d1 challengeType: 3 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof fractran=="function","fractran should be a function.");' - text: '' testString: 'assert(Array.isArray(fractran(tests[0])),"fractran(""+tests[0]+"") should return an array.");' - text: '' testString: 'assert.deepEqual(fractran(tests[0]),results[0],"fractran(""+tests[0]+"") should return "+JSON.stringify(results[0])+".");' - text: '' testString: 'assert.deepEqual(fractran(tests[1]),results[1],"fractran(""+tests[1]+"") should return "+JSON.stringify(results[1])+".");' - text: '' testString: 'assert.deepEqual(fractran(tests[2]),results[2],"fractran(""+tests[2]+"") should return "+JSON.stringify(results[2])+".");' - text: '' testString: 'assert.deepEqual(fractran(tests[3]),results[3],"fractran(""+tests[3]+"") should return "+JSON.stringify(results[3])+".");' - text: '' testString: 'assert.deepEqual(fractran(tests[4]),results[4],"fractran(""+tests[4]+"") should return "+JSON.stringify(results[4])+".");' ```
## Challenge Seed
```js function fractran (progStr) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```