const createTestModelFile = async ({ modelName, rootDir, testFolder }) => {
    const fileName = to.pascal(modelName) + '.test.js';
    const filePath = path.join(rootDir, testFolder, 'models', fileName);
    const fileContent = testModelFileTemplate(modelName);
    await writeFile(filePath, fileContent, { encoding: 'utf8' });