Rails - Настройка кармы с помощью hamlc - получение ошибки разбора на hamlcoffee.js.coffee.erb

Я пытаюсь настроить среду углового тестирования, используя Karma, Jasmine и Phantomjs. Это приложение на рельсах, использующее hamlcoffee в качестве языка шаблонов.

Моя проблема в том, что когда я пытаюсь запустить тесты, я получаю следующую ошибку:

PhantomJS 1.9.7 (Linux) ERROR
SyntaxError: Parse error at /home/me/.rvm/gems/ruby-2.1.2/bundler/gems/haml_coffee_assets-a3c2951eca00/vendor/assets/javascripts/hamlcoffee.js.coffee.erb:1

Похоже на файл hamlcoffee.js.coffee.erb здесь проблема, поэтому я попытался добавить все, заканчивающееся на .erb в список исключений в конфигурационном файле karma, но, к сожалению, безуспешно.

Это мой файл конфигурации Karma:

// Karma configuration
module.exports = function(config) {
  config.set({

    // base path, based on tmp/ folder
    basePath: '..',


    // frameworks to use
    frameworks: ['jasmine', 'ng-scenario'],


    // list of files / patterns to load in the browser
    files: [
      APPLICATION_SPEC,
      'app/assets/javascripts/*/*.{coffee,js}',
      'spec/javascripts/**/*_spec.{coffee,js}',
      'app/assets/*.haml'
    ],

    // list of files to exclude
    exclude: [
      '**/*.erb'
    ],


    // test results reporter to use
    // possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
    reporters: ['progress'],


    // web server port
    port: 9876,


    // enable / disable colors in the output (reporters and logs)
    colors: true,


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_INFO,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: true,


    // Start these browsers, currently available:
    // - Chrome
    // - ChromeCanary
    // - Firefox
    // - Opera (has to be installed with `npm install karma-opera-launcher`)
    // - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
    // - PhantomJS
    // - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
    browsers: ['PhantomJS'],


    // If browser does not capture in given timeout [ms], kill it
    captureTimeout: 60000,


    // Continuous Integration mode
    // if true, it capture browsers, run tests and exit
    singleRun: false,

    // Preprocessors
    preprocessors: {
        '**/*.coffee'                         : 'coffee',
        'app/assets/javascripts/**/*.hamlc'   : 'haml'
    },

    hamlPreprocessor: {
      options: {
        language: 'coffee'
      }
    }

  });
};

Я использую karma-haml-препроцессор для моего .hamlc шаблоны.

0 ответов

Другие вопросы по тегам