0.0.1 • Published 8 years ago

grunt-testfairy v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

grunt-testfairy

Upload and distribute your apk(ipa) builds to Testfairy via grunt tasks

#Install npm install --save grunt-testfairy

#Usage

var config = require('./config.json')
module.exports = function(grunt) {
  grunt.initConfig({
    testfairy: {
      android: {
        options : {
          platform: "android",
          api_key: config["api_key"],
          file: './test.apk',
          notify: 'on',
          groups: 'onlyme'
        }
      },
      ios: {
        options : {
          platform: "ios",
          api_key: config["api_key"],
          file: './test.ipa'
        }
      }
    }
  })
  require('load-grunt-tasks')(grunt);
  grunt.registerTask('default', 'testfairy');
}

Run the task

#Options See testfairy module options