Skip to content

docs: async loader #1334

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 30, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 0 additions & 117 deletions karma.sauce.config.js

This file was deleted.

13 changes: 0 additions & 13 deletions karma.unit.config.js

This file was deleted.

7 changes: 5 additions & 2 deletions karma.config.js → karma/karma.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module.exports = {
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
basePath: '../',

// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
Expand Down Expand Up @@ -58,9 +58,12 @@ module.exports = {
}
},

// https://docs.travis-ci.com/user/gui-and-headless-browsers/#Karma-and-Firefox-inactivity-timeouts
browserNoActivityTimeout: 30000,

// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
singleRun: true,

// Concurrency level
// how many browser should be started simultaneous
Expand Down
10 changes: 10 additions & 0 deletions karma/karma.integration-sauce.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
var commonSauceConfig = require('./karma.sauce.config');
var files = require('./karma.integration.config').files;

module.exports = function(config) {
var testConfig = Object.assign({}, commonSauceConfig, {
logLevel: config.LOG_INFO,
files: files.concat(['build/raven.test.js'])
});
config.set(testConfig);
};
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ var testFiles = [
{pattern: 'test/integration/throw-object.js', included: false},
{pattern: 'test/integration/example.json', included: false},
{pattern: 'test/integration/frame.html', included: false},
'test/integration/test.js',
'test/globals.js',
'build/raven.js',
{pattern: 'build/raven.js', included: false},
'test/integration/test.js'
];

module.exports = function(config) {
var testConfig = Object.assign({}, commonConfig, {files: testFiles});
config.set(testConfig);
};

module.exports.files = testFiles;
10 changes: 10 additions & 0 deletions karma/karma.loader-sauce.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
var commonSauceConfig = require('./karma.sauce.config');
var files = require('./karma.loader.config').files;

module.exports = function(config) {
var testConfig = Object.assign({}, commonSauceConfig, {
logLevel: config.LOG_INFO,
files: files
});
config.set(testConfig);
};
15 changes: 15 additions & 0 deletions karma/karma.loader.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
var commonConfig = require('./karma.config');

var testFiles = [
{pattern: 'node_modules/es6-promise/dist/es6-promise.auto.js', included: false},
{pattern: 'test/integration/loader.html', included: false},
{pattern: 'build/raven.js', included: false},
{pattern: 'src/loader.js', included: false},
'test/integration/loader-test.js'
];

module.exports = function(config) {
var testConfig = Object.assign({}, commonConfig, {files: testFiles});
config.set(testConfig);
};
module.exports.files = testFiles;
97 changes: 97 additions & 0 deletions karma/karma.sauce.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
var commonConfig = require('./karma.config');

var customLaunchers = {
sl_chrome: {
base: 'SauceLabs',
browserName: 'chrome',
platform: 'Windows 10',
version: 'latest'
},
sl_firefox: {
base: 'SauceLabs',
browserName: 'firefox',
platform: 'Windows 10',
version: 'latest'
},
sl_edge: {
base: 'SauceLabs',
browserName: 'microsoftedge',
version: 'latest',
platform: 'Windows 10'
},
sl_ie_11: {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 7',
version: '11'
},
sl_ie_10: {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows 7',
version: '10'
},
sl_safari: {
base: 'SauceLabs',
browserName: 'safari',
platform: 'OS X 10.12',
version: '11.0'
},
sl_ios: {
base: 'SauceLabs',
browserName: 'iphone',
platform: 'OS X 10.12',
version: '11.0'
},
sl_android_7: {
base: 'SauceLabs',
browserName: 'Chrome',
platform: 'Android',
version: '7.1',
device: 'Android GoogleAPI Emulator'
},
sl_android_6: {
base: 'SauceLabs',
browserName: 'Chrome',
platform: 'Android',
version: '6.0',
device: 'Android Emulator'
},
sl_android_5: {
base: 'SauceLabs',
browserName: 'android',
platform: 'Linux',
version: '5.1'
},
sl_android_4: {
base: 'SauceLabs',
browserName: 'android',
platform: 'Linux',
version: '4.4'
}
};

module.exports = Object.assign({}, commonConfig, {
customLaunchers: customLaunchers,
browsers: Object.keys(customLaunchers),
reporters: ['failed', 'saucelabs'],
singleRun: true,
plugins: commonConfig.plugins.concat(['karma-sauce-launcher']),
build: process.env.TRAVIS_BUILD_NUMBER,
// SauceLabs allows for 2 tunnels only, therefore some browsers will have to wait
// rather long time. Plus mobile emulators tend to require a lot of time to start up.
// 10 minutes should be more than enough to run all of them.
browserNoActivityTimeout: 600000,
captureTimeout: 600000,
sauceLabs: {
startConnect: false,
// Just something "random" so we don't have to provide additional ENV var when running locally
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER || Math.ceil(Math.random() * 1337),
recordScreenshots: false,
recordVideo: false,
testName:
'Raven.js' +
(process.env.TRAVIS_JOB_NUMBER ? ' #' + process.env.TRAVIS_JOB_NUMBER : ''),
public: 'public'
}
});
9 changes: 9 additions & 0 deletions karma/karma.unit.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var commonConfig = require('./karma.config');

module.exports = function(config) {
var testConfig = Object.assign({}, commonConfig, {
logLevel: config.LOG_INFO,
files: ['build/raven.test.js']
});
config.set(testConfig);
};
Loading