geksilla / karma-ember-precompiler-brunch

Karma preprocessor for precompiling handlebars templates based on ember brunch seed.
0 stars 1 forks source link

karma-ember-precompiler-brunch

Usage

    .......

    // Include to plugins list
    plugins: [
      'karma-ember-precompiler-brunch'
    ],

    // Create configuration
    emberPrecompilerBrunchPreprocessor: {
      jqueryPath: 'path/to/jquery.js',
      handlebarsPath: 'path/to/handlebars.js'
      emberPath: 'path/to/ember.js',
    },

    // Use it! :)
    preprocessors: {
      '**/*.hbs': 'ember-precompiler-brunch'
    }