| 3 | const getName = filePath => filePath.split('/').pop(); |
| 4 | const getContent = filePath => require('!raw-loader!./' + filePath).default; |
| 5 | const readProjectFile = filePath => createProjectFile(getName(filePath), getContent(filePath)); |
| 6 | const readUserFile = filePath => createUserFile(getName(filePath), getContent(filePath)); |
| 7 | |
| 8 | export const CODE_CPP = readUserFile('skeletons/code.cpp'); |
no test coverage detected