forked from ajv-validator/ajv
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests are browser compatible, karma tests with sauceLabs, readme on u…
…sing in browser, #21
- Loading branch information
1 parent
6c93d03
commit 6b9bc9e
Showing
10 changed files
with
266 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,9 @@ build/Release | |
node_modules | ||
|
||
.DS_Store | ||
|
||
# Browserified browser tests | ||
.browser | ||
|
||
# Ajv bundle | ||
ajv.bundle.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
browserify -r ./lib/ajv.js:ajv -o ajv.bundle.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
find spec -type f -name '*.spec.js' | \ | ||
xargs -I {} sh -c \ | ||
'export f="{}"; browserify $f -t require-globify -r js-beautify -o ${f/spec/.browser};' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Karma configuration | ||
// Generated on Thu Mar 13 2014 14:12:04 GMT-0700 (PDT) | ||
|
||
module.exports = function(config) { | ||
config.set({ | ||
|
||
// base path that will be used to resolve all patterns (eg. files, exclude) | ||
basePath: '', | ||
|
||
|
||
// frameworks to use | ||
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter | ||
frameworks: ['mocha'], | ||
|
||
|
||
// list of files / patterns to load in the browser | ||
files: [ | ||
'.browser/*.js' | ||
], | ||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress' | ||
// available reporters: https://npmjs.org/browse/keyword/karma-reporter | ||
reporters: ['progress'], | ||
|
||
|
||
// web server port | ||
port: 9876, | ||
|
||
|
||
// enable / disable colors in the output (reporters and logs) | ||
colors: true, | ||
|
||
|
||
// level of logging | ||
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG | ||
logLevel: config.LOG_INFO, | ||
|
||
|
||
// enable / disable watching file and executing tests whenever any file changes | ||
autoWatch: false, | ||
|
||
|
||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari (only Mac) | ||
// - PhantomJS | ||
// - IE (only Windows) | ||
browsers: ['Chrome'], | ||
|
||
|
||
// Continuous Integration mode | ||
// if true, Karma captures browsers, runs the tests and exits | ||
singleRun: true | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
'use strict'; | ||
|
||
var fs = require('fs'); | ||
|
||
module.exports = function(config) { | ||
|
||
// Use ENV vars on Travis and sauce.json locally to get credentials | ||
if (!process.env.SAUCE_USERNAME) { | ||
if (!fs.existsSync('sauce.json')) { | ||
console.log('Create a sauce.json with your credentials based on the sauce-sample.json file.'); | ||
process.exit(1); | ||
} else { | ||
process.env.SAUCE_USERNAME = require('./sauce').username; | ||
process.env.SAUCE_ACCESS_KEY = require('./sauce').accessKey; | ||
} | ||
} | ||
|
||
// Browsers to run on Sauce Labs | ||
var customLaunchers = { | ||
'SL_Chrome_27': { | ||
base: 'SauceLabs', | ||
browserName: 'chrome', | ||
version: '27' | ||
}, | ||
'SL_Chrome_43': { | ||
base: 'SauceLabs', | ||
browserName: 'chrome', | ||
version: '43' | ||
}, | ||
'SL_Chrome_beta': { | ||
base: 'SauceLabs', | ||
browserName: 'chrome', | ||
version: 'beta' | ||
}, | ||
'SL_InternetExplorer_9': { | ||
base: 'SauceLabs', | ||
browserName: 'internet explorer', | ||
version: '9' | ||
}, | ||
'SL_InternetExplorer_10': { | ||
base: 'SauceLabs', | ||
browserName: 'internet explorer', | ||
version: '10' | ||
}, | ||
'SL_InternetExplorer_11': { | ||
base: 'SauceLabs', | ||
browserName: 'internet explorer', | ||
version: '11' | ||
}, | ||
'SL_FireFox_4': { | ||
base: 'SauceLabs', | ||
browserName: 'firefox', | ||
version: '4' | ||
}, | ||
'SL_FireFox_17': { | ||
base: 'SauceLabs', | ||
browserName: 'firefox', | ||
version: '17' | ||
}, | ||
'SL_FireFox_24': { | ||
base: 'SauceLabs', | ||
browserName: 'firefox', | ||
version: '24' | ||
}, | ||
'SL_FireFox': { | ||
base: 'SauceLabs', | ||
browserName: 'firefox' | ||
}, | ||
'SL_Safari_5': { | ||
base: 'SauceLabs', | ||
browserName: 'safari', | ||
version: '5' | ||
}, | ||
'SL_Safari_6': { | ||
base: 'SauceLabs', | ||
browserName: 'safari', | ||
version: '6' | ||
}, | ||
'SL_Safari_7': { | ||
base: 'SauceLabs', | ||
browserName: 'safari', | ||
version: '7' | ||
}, | ||
'SL_iPhone_8': { | ||
base: 'SauceLabs', | ||
browserName: 'iphone', | ||
version: '8.1' | ||
} | ||
}; | ||
|
||
|
||
config.set({ | ||
|
||
// base path that will be used to resolve all patterns (eg. files, exclude) | ||
basePath: '', | ||
|
||
|
||
// frameworks to use | ||
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter | ||
frameworks: ['mocha'], | ||
|
||
|
||
// list of files / patterns to load in the browser | ||
files: [ | ||
'.browser/*.js' | ||
], | ||
|
||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress' | ||
// available reporters: https://npmjs.org/browse/keyword/karma-reporter | ||
reporters: ['dots', 'saucelabs'], | ||
|
||
|
||
// web server port | ||
port: 9876, | ||
|
||
colors: true, | ||
|
||
// level of logging | ||
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG | ||
logLevel: config.LOG_INFO, | ||
|
||
sauceLabs: { | ||
testName: 'Ajv' | ||
}, | ||
captureTimeout: 300000, | ||
browserNoActivityTimeout: 120000, | ||
|
||
customLaunchers: customLaunchers, | ||
|
||
// start these browsers | ||
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher | ||
browsers: Object.keys(customLaunchers), | ||
singleRun: true | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"username": "epoberezkin", | ||
"accessKey": "6ab61c89-e0d3-46bc-8719-aa44d58cea84" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters