How to use attester - 6 common examples

To help you get started, we’ve selected a few attester examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ariatemplates / ariatemplates / scripts / ciCampaigns.js View on Github external
campaign: "nopuppeteer",
        noFlash: travis,
        browsers: [nopuppeteerBrowser]
    })
];

var robotServerProcess = robotServer.exec();
process.on("exit", function () {
    robotServerProcess.kill();
});

var options = {
    "max-task-restarts": 3,
    "task-restart-on-failure": true,
    "colors": true,
    "env": attester.config.readFile("package.json"),
    "launcher-config": "test/ciLauncher.yml"
};
attester.config.set(options);
campaigns.forEach(function (campaign, n) {
    attester.campaign.create(campaign, {}, n+1);
});

require("./startAttester");
github ariatemplates / ariatemplates / scripts / ciCampaigns.js View on Github external
})
];

var robotServerProcess = robotServer.exec();
process.on("exit", function () {
    robotServerProcess.kill();
});

var options = {
    "max-task-restarts": 3,
    "task-restart-on-failure": true,
    "colors": true,
    "env": attester.config.readFile("package.json"),
    "launcher-config": "test/ciLauncher.yml"
};
attester.config.set(options);
campaigns.forEach(function (campaign, n) {
    attester.campaign.create(campaign, {}, n+1);
});

require("./startAttester");
github ariatemplates / ariatemplates / scripts / browsersCampaigns.js View on Github external
}),
    testConfigBuilder.buildTestConfig({
        campaign: "flatSkin",
        browsers: browsers
    }),
    testConfigBuilder.buildTestConfig({
        campaign: "jawsTests",
        browsers: ["IE 11 with JAWS18", "IE 11 with JAWS16"]
    })
];

var options = {
    "max-task-restarts": 15,
    "task-restart-on-failure": true,
    "colors": true,
    "env": attester.config.readFile("package.json"),
    "phantomjs-instances": 0
};
attester.config.set(options);
campaigns.forEach(function (campaign, n) {
    attester.campaign.create(campaign, {}, n+1);
});

require("./startAttester");
github ariatemplates / ariatemplates / scripts / browsersCampaigns.js View on Github external
browsers: browsers
    }),
    testConfigBuilder.buildTestConfig({
        campaign: "jawsTests",
        browsers: ["IE 11 with JAWS18", "IE 11 with JAWS16"]
    })
];

var options = {
    "max-task-restarts": 15,
    "task-restart-on-failure": true,
    "colors": true,
    "env": attester.config.readFile("package.json"),
    "phantomjs-instances": 0
};
attester.config.set(options);
campaigns.forEach(function (campaign, n) {
    attester.campaign.create(campaign, {}, n+1);
});

require("./startAttester");
github ariatemplates / ariatemplates / scripts / browsersCampaigns.js View on Github external
campaigns.forEach(function (campaign, n) {
    attester.campaign.create(campaign, {}, n+1);
});
github ariatemplates / ariatemplates / scripts / ciCampaigns.js View on Github external
campaigns.forEach(function (campaign, n) {
    attester.campaign.create(campaign, {}, n+1);
});

attester

Command line tool to run Javascript tests in several web browsers.

Apache-2.0
Latest version published 3 years ago

Package Health Score

36 / 100
Full package analysis

Popular attester functions