1.1.2 • Published 8 years ago

patata-provider-hockeyapp v1.1.2

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

Build Status

HockeyApp provider for Patata

The HockeyApp provider for Patata allow us to test our applications getting the binaries directly from HockeyApp.net.

How it works

So far, the provider download the latest version of an specific app. In this way, Patata will always test with the latest version published on HockeyApp.

How to use it

You need a Patata project already set up and a patatafile.js in place. Follow the documentation here.

Using the provider section of any suite, add the following code:

var PatataProviderHockeyApp = require('patata-provider-hockeyapp');

patata.suite('suite01', {

    provider: {
        package: PatataProviderHockeyApp,
        token: 'aaaabbbbccccdddd0000111122223333',
        id: 'aaaabbbbccccdddd0000111122223333',
        extension: 'apk'
    },
        
});

Or by first title match:

var PatataProviderHockeyApp = require('patata-provider-hockeyapp');

patata.suite('suite01', {

    provider: {
        package: PatataProviderHockeyApp,
        token: 'aaaabbbbccccdddd0000111122223333',
        app: 'YOUR HOCKEY APP TITLE',
        extension: 'ipa'
    },
        
});

Where:

  • package: this package as required.
  • token: API token that can be obtained from HockeyApp.
  • id: application to test by app id.
  • app: application to test by title.
  • extension: file extension for download. E.g. apk, ipa, ...
1.1.2

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago

0.0.0

8 years ago