How to use the yeoman-test.assertFile function in yeoman-test

To help you get started, we’ve selected a few yeoman-test examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sincraianul / generator-angular-material-fullstack / test / test-file-creation.js View on Github external
gen.run({}, function () {
          helpers.assertFile([
            'client/.htaccess',
            'client/favicon.ico',
            'client/robots.txt',
            'client/app/main/main.scss',
            'client/app/main/main.html',
            'client/index.html',
            'client/.jshintrc',
            '.bowerrc',
            '.editorconfig',
            '.gitignore',
            'Gruntfile.js',
            'package.json',
            'bower.json',
            'server/app.js',
            'server/config/express.js',
            'server/api/thing/index.js']);