removed browser test badge

master
Evgeny Poberezkin 2016-02-29 23:47:15 +00:00
parent 7399e441d0
commit bb243695c6
3 changed files with 6 additions and 13 deletions

View File

@ -138,10 +138,6 @@ This bundle can be used with different module systems or creates global `Ajv` if
The browser bundle is available on [cdnjs](https://cdnjs.com/libraries/ajv).
Ajv was tested with these browsers:
[![Sauce Test Status](https://saucelabs.com/browser-matrix/epoberezkin.svg)](https://saucelabs.com/u/epoberezkin)
## Validation keywords

View File

@ -26,11 +26,6 @@ module.exports = function(config) {
base: 'SauceLabs',
browserName: 'chrome'
},
'SL_Chrome_beta': {
base: 'SauceLabs',
browserName: 'chrome',
version: 'beta'
},
'SL_InternetExplorer_9': {
base: 'SauceLabs',
browserName: 'internet explorer',
@ -110,8 +105,10 @@ module.exports = function(config) {
// list of files / patterns to load in the browser
files: [
'ajv.min.js',
'dist/ajv.min.js',
'node_modules/chai/chai.js',
'dist/regenerator.min.js',
'dist/nodent.min.js',
'.browser/*.spec.js'
],
@ -134,8 +131,8 @@ module.exports = function(config) {
sauceLabs: {
testName: 'Ajv'
},
captureTimeout: 600000,
browserNoActivityTimeout: 300000,
captureTimeout: 900000,
browserNoActivityTimeout: 500000,
customLaunchers: customLaunchers,

View File

@ -8,7 +8,7 @@ var Ajv = require('./ajv')
describe('async schemas, formats and keywords', function() {
this.timeout(10000);
this.timeout(30000);
var ajv, instances;
beforeEach(function () {