Keyes / grunt-angular-json2js

grunt task to convert json files into AngularJs modules for test injection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

grunt-angular-json2js

Grunt task for converting JSON files to AngularJS values.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-angular-json2js --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-angular-json2js');

The "json2js" task

Overview

In your project's Gruntfile, add a section named json2js to the data object passed into grunt.initConfig().

grunt.initConfig({
  json2js: {
    options: {
            // strip this from the file path
             stripPrefix: 'test/fixture/',

             // prepend this to the
             prependPrefix: 'served/',
             
             // set a modul name, 'json' is default
             modulName: 'json'
    },
    files: [
        '/testData/**/*.json'
    ],
  },
});

Examples

For instance this test/fixture/data.json ...

{
    prop: val
}

... with the configuration given above will be converted into:

angular.module('json', []).value('test/fixture/data.json', {
    prop: 'val'
});

Inject json fixture into your test case:

describe('me', function(){
    beforeEach(module('json'));

    it('should not fail', function() {
        var testFixture;
        inject(function (_testFixtureDataJson_) {
            testFixture = _testFixtureDataJson_;
        });

        expect(testFixture).toEqual({
            prop: 'val'
        });
    });

});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

About

grunt task to convert json files into AngularJs modules for test injection

License:MIT License


Languages

Language:JavaScript 100.0%