freeCodeCamp/utils/__fixtures__/challenges.js

51 lines
885 B
JavaScript

exports.challengeFiles = [
{
contents: 'some css',
error: null,
ext: 'css',
head: '',
history: ['styles.css'],
fileKey: 'stylescss',
name: 'styles',
path: 'styles.css',
seed: 'some css',
tail: ''
},
{
contents: 'some html',
error: null,
ext: 'html',
head: '',
history: ['index.html'],
fileKey: 'indexhtml',
name: 'index',
path: 'index.html',
seed: 'some html',
tail: ''
},
{
contents: 'some js',
error: null,
ext: 'js',
head: '',
history: ['script.js'],
fileKey: 'scriptjs',
name: 'script',
path: 'script.js',
seed: 'some js',
tail: ''
},
{
contents: 'some jsx',
error: null,
ext: 'jsx',
head: '',
history: ['index.jsx'],
fileKey: 'indexjsx',
name: 'index',
path: 'index.jsx',
seed: 'some jsx',
tail: ''
}
];