0.0.1 • Published 10 years ago
grunt-testfairy v0.0.1
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
0.0.1
10 years ago