-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Comparing changes
Open a pull request
base repository: karma-runner/karma
base: 9cd65cd0d9b063d54953013105904e9b55822f47
head repository: karma-runner/karma
compare: db41e8e8c6bcfe59ed67cc2d2c5c1e3fda174d2a
Commits on Sep 9, 2016
-
fix(config): add crossOriginAttribute config option
This enables the loading of external scripts without the required CORS headers being set.
Configuration menu - View commit details
-
Copy full SHA for 1e465b1 - Browse repository at this point
Copy the full SHA 1e465b1View commit details
Commits on Sep 11, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 9ef4d05 - Browse repository at this point
Copy the full SHA 9ef4d05View commit details
Commits on Sep 13, 2016
-
Configuration menu - View commit details
-
Copy full SHA for c0b649f - Browse repository at this point
Copy the full SHA c0b649fView commit details -
Merge pull request #2354 from thorn0/patch-1
docs(config): document--no-browsers option
Configuration menu - View commit details
-
Copy full SHA for 0bb7820 - Browse repository at this point
Copy the full SHA 0bb7820View commit details
Commits on Sep 14, 2016
-
Merge pull request #2318 from dotch/fix-crossorigin
fix(runner): Fix loading of external scripts without cors headers
Configuration menu - View commit details
-
Copy full SHA for 39d378d - Browse repository at this point
Copy the full SHA 39d378dView commit details
Commits on Oct 14, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 16050fe - Browse repository at this point
Copy the full SHA 16050feView commit details
Commits on Nov 10, 2016
-
feat(web-server): allow overriding of default http module
allow setting an external module for use by KarmaServer Closes #2424
Configuration menu - View commit details
-
Copy full SHA for 1e7514d - Browse repository at this point
Copy the full SHA 1e7514dView commit details
Commits on Nov 16, 2016
-
Configuration menu - View commit details
-
Copy full SHA for b82937e - Browse repository at this point
Copy the full SHA b82937eView commit details -
Merge pull request #2445 from itslenny/AllowUsingAnExternalHttpModule
feat(web-server): allow overriding of default http module
Configuration menu - View commit details
-
Copy full SHA for 9fae5e8 - Browse repository at this point
Copy the full SHA 9fae5e8View commit details -
fix(reporter): do not allow URL domains to span new lines
This was causing some excruciating error logs with the default format of cross-domain iframe errors: ``` Error: Blocked a frame with origin "http://localhost:9876" from accessing a cross-origin frame. at Error (native) at Function.method.restore (absolute/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/fa96dc8102e4c5416f4cd38061107a08.browserify?f4458f57b50ae627f718945da619dae7c682b4a0:60376:28) at each (absolute/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/fa96dc8102e4c5416f4cd38061107a08.browserify?f4458f57b50ae627f718945da619dae7c682b4a0:57875:33) at Object.restore (absolute/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/fa96dc8102e4c5416f4cd38061107a08.browserify?f4458f57b50ae627f718945da619dae7c682b4a0:57895:17) at Object.restore (absolute/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/fa96dc8102e4c5416f4cd38061107a08.browserify?f4458f57b50ae627f718945da619dae7c682b4a0:59163:42) at Context.<anonymous> (absolute/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/fa96dc8102e4c5416f4cd38061107a08.browserify?f4458f57b50ae627f718945da619dae7c682b4a0:109551:13) ``` The old regex would find that `https://` then include everything that wasn't a slash, which included the next two lines into the `/absolute`. The output would be similar to: ``` Error: Blocked a frame with origin "/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/afde9a0a28f71236ac3340462d6ca94e.browserify:60376:28 <- node_modules/sinon/lib/sinon/util/core.js:154:0) at each (/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/afde9a0a28f71236ac3340462d6ca94e.browserify:57875:33 <- node_modules/sinon/lib/sinon/collection.js:34:0) ... ``` With this, we prevent the domain from spanning the newline character, and now the output is: ``` Error: Blocked a frame with origin "http://localhost:9876" from accessing a cross-origin frame. at Error (native) at Function.method.restore (/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/6c039bf5162f620e4d2667e56f143a02.browserify:60376:28 <- node_modules/sinon/lib/sinon/util/core.js:154:0) at each (/var/folders/8m/vg2kf8h50bj9gy5r9gwn20dw00_y0z/T/6c039bf5162f620e4d2667e56f143a02.browserify:57875:33 <- node_modules/sinon/lib/sinon/collection.js:34:0) ... ```
Configuration menu - View commit details
-
Copy full SHA for 2c13404 - Browse repository at this point
Copy the full SHA 2c13404View commit details -
fix(cli): restore shell completion in the npm package
Restore scripts from .npmignore to fix karma completion command Closes #2351
Configuration menu - View commit details
-
Copy full SHA for f56b5a5 - Browse repository at this point
Copy the full SHA f56b5a5View commit details -
docs: Correct grammar, punctuation, add link
Rewrote some sentences to make the 'flow' better. Added a link to text 'Configuration File'.
Configuration menu - View commit details
-
Copy full SHA for 8e2cfab - Browse repository at this point
Copy the full SHA 8e2cfabView commit details
Commits on Nov 29, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 7d2c1ae - Browse repository at this point
Copy the full SHA 7d2c1aeView commit details
Commits on Dec 2, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 86e2ef2 - Browse repository at this point
Copy the full SHA 86e2ef2View commit details
Commits on Dec 6, 2016
-
chore(deps): upgrade glob to
7.1.1?
Upgrade glob to an up to date version to avoid regression. Fixes #2325
Configuration menu - View commit details
-
Copy full SHA for 43247f3 - Browse repository at this point
Copy the full SHA 43247f3View commit details -
chore: upgrade socket.io to
1.7.1
This contains the fix for the Uint8Array regression in IE9. Fixes #2190
Configuration menu - View commit details
-
Copy full SHA for d1a167f - Browse repository at this point
Copy the full SHA d1a167fView commit details
Commits on Dec 7, 2016
-
fix(middleware): update
Buffer
usageUpdate Buffer usage to non-deprecated methods of creating a Buffer, polyfilling with `safer-buffer`.
Configuration menu - View commit details
-
Copy full SHA for 3d94b8c - Browse repository at this point
Copy the full SHA 3d94b8cView commit details -
feat(api): add constants to the public api
Make `constants` available for public usage. Fixes #2361
Configuration menu - View commit details
-
Copy full SHA for ee10977 - Browse repository at this point
Copy the full SHA ee10977View commit details
Commits on Dec 8, 2016
-
Configuration menu - View commit details
-
Copy full SHA for dbca5fb - Browse repository at this point
Copy the full SHA dbca5fbView commit details
Commits on Dec 9, 2016
-
Merge pull request #2494 from karma-runner/greenkeeper-coffee-script-…
…1.12.1 coffee-script@1.12.1 breaks build
⚠️ Configuration menu - View commit details
-
Copy full SHA for 646c84d - Browse repository at this point
Copy the full SHA 646c84dView commit details
Commits on Dec 11, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 36cd058 - Browse repository at this point
Copy the full SHA 36cd058View commit details -
Merge pull request #2498 from karma-runner/greenkeeper-socket.io-1.7.2
Update socket.io to version 1.7.2 🚀
Configuration menu - View commit details
-
Copy full SHA for 6763719 - Browse repository at this point
Copy the full SHA 6763719View commit details -
feat(server): add listen address option so that IPv6 and loopback int…
…erfaces can be used Fixes #2477
Configuration menu - View commit details
-
Copy full SHA for 8e5bee6 - Browse repository at this point
Copy the full SHA 8e5bee6View commit details
Commits on Dec 12, 2016
-
Configuration menu - View commit details
-
Copy full SHA for bb890a8 - Browse repository at this point
Copy the full SHA bb890a8View commit details
Commits on Dec 21, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 999e36f - Browse repository at this point
Copy the full SHA 999e36fView commit details
Commits on Dec 30, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 58ccb27 - Browse repository at this point
Copy the full SHA 58ccb27View commit details
Commits on Jan 1, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 62c33f0 - Browse repository at this point
Copy the full SHA 62c33f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for c9a3a63 - Browse repository at this point
Copy the full SHA c9a3a63View commit details -
Merge pull request #2503 from karma-runner/greenkeeper-eslint-3.12.1
Update eslint to version 3.12.1 🚀
Configuration menu - View commit details
-
Copy full SHA for 13cefee - Browse repository at this point
Copy the full SHA 13cefeeView commit details
Commits on Jan 6, 2017
-
Configuration menu - View commit details
-
Copy full SHA for c20d004 - Browse repository at this point
Copy the full SHA c20d004View commit details
Commits on Jan 8, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 495ab0c - Browse repository at this point
Copy the full SHA 495ab0cView commit details
Commits on Jan 9, 2017
-
Configuration menu - View commit details
-
Copy full SHA for ea40f15 - Browse repository at this point
Copy the full SHA ea40f15View commit details
Commits on Jan 11, 2017
-
Merge pull request #2531 from karma-runner/greenkeeper-grunt-auto-rel…
…ease-0.0.7 Update grunt-auto-release to version 0.0.7 🚀
Configuration menu - View commit details
-
Copy full SHA for daeb31e - Browse repository at this point
Copy the full SHA daeb31eView commit details -
Merge pull request #2530 from karma-runner/greenkeeper-eslint-plugin-…
…react-6.9.0 Update eslint-plugin-react to version 6.9.0 🚀
Configuration menu - View commit details
-
Copy full SHA for 85beac2 - Browse repository at this point
Copy the full SHA 85beac2View commit details -
Merge pull request #2527 from karma-runner/greenkeeper-qunitjs-2.1.1
Update qunitjs to version 2.1.1 🚀
Configuration menu - View commit details
-
Copy full SHA for e89f092 - Browse repository at this point
Copy the full SHA e89f092View commit details -
Merge pull request #2510 from karma-runner/greenkeeper-useragent-2.1.10
useragent@2.1.10 breaks build 🚨
Configuration menu - View commit details
-
Copy full SHA for 79bc193 - Browse repository at this point
Copy the full SHA 79bc193View commit details
Commits on Jan 12, 2017
-
fix(runner): Make process kill timeout configurable
Add a new user configurable property processKillTimeout to set timeout for any spawned process Closes #2447
Configuration menu - View commit details
-
Copy full SHA for ffaa054 - Browse repository at this point
Copy the full SHA ffaa054View commit details -
fix(runner): Make process kill timeout configurable - Fix Build
Fixing build (Writing value of 2000 in case of variable not being initialized) Closes #2447
Configuration menu - View commit details
-
Copy full SHA for a128e5c - Browse repository at this point
Copy the full SHA a128e5cView commit details
Commits on Jan 14, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 305df2c - Browse repository at this point
Copy the full SHA 305df2cView commit details -
fix(browser): filter browser logging by level
Do not log lower levels if `browserConsoleLogOptions.level` is set Fixes #2228
Configuration menu - View commit details
-
Copy full SHA for 35965d9 - Browse repository at this point
Copy the full SHA 35965d9View commit details -
feat(client): capture confirm & prompt
Capture `window.confirm` & `window.prompt` usages in client Fixes #694
Configuration menu - View commit details
-
Copy full SHA for 3a618b3 - Browse repository at this point
Copy the full SHA 3a618b3View commit details -
fix(reporter): strip only hostname/port
Strip only specified hostname & port from result Fixes #2209
Configuration menu - View commit details
-
Copy full SHA for fbbeccf - Browse repository at this point
Copy the full SHA fbbeccfView commit details -
Configuration menu - View commit details
-
Copy full SHA for c168b79 - Browse repository at this point
Copy the full SHA c168b79View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99d647b - Browse repository at this point
Copy the full SHA 99d647bView commit details
Commits on Jan 15, 2017
-
fix(runner): Test process kill timeout config
Add new unit test for processKillTimeout configuration Closes #2447
Configuration menu - View commit details
-
Copy full SHA for 99a1d48 - Browse repository at this point
Copy the full SHA 99a1d48View commit details -
feat(config): allow config to be a default export
Matt Lewis committedJan 15, 2017 Configuration menu - View commit details
-
Copy full SHA for 9976dce - Browse repository at this point
Copy the full SHA 9976dceView commit details -
chore: switch from ghooks to husky
Matt Lewis committedJan 15, 2017 Configuration menu - View commit details
-
Copy full SHA for 48dad20 - Browse repository at this point
Copy the full SHA 48dad20View commit details
Commits on Jan 18, 2017
-
Merge pull request #2536 from mattlewis92/default-export-config
feat(config): allow config to be a default export
Configuration menu - View commit details
-
Copy full SHA for 27d9b12 - Browse repository at this point
Copy the full SHA 27d9b12View commit details -
Merge pull request #2537 from mattlewis92/switch-gooks-to-husly
chore: switch from ghooks to husky
Configuration menu - View commit details
-
Copy full SHA for b8b02aa - Browse repository at this point
Copy the full SHA b8b02aaView commit details -
Merge pull request #2533 from vivganes/dev
fix(runner): Make process kill timeout configurable
Configuration menu - View commit details
-
Copy full SHA for 0bec015 - Browse repository at this point
Copy the full SHA 0bec015View commit details
There are no files selected for viewing
This file was deleted.