Skip to content

Commit 16a060e

Browse files
Purge inactive/broken Travis and Sauce Labs integrations (kpdecker#504)
1 parent c9bc8e3 commit 16a060e

File tree

7 files changed

+50
-2240
lines changed

7 files changed

+50
-2240
lines changed

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.eslintrc
33
.gitignore
44
.npmignore
5-
.travis.yml
65
.vscode
76
components
87
coverage

.travis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

Gruntfile.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ module.exports = function(grunt) {
7373
unit: {
7474
singleRun: true
7575
},
76-
sauce: {
77-
singleRun: true,
78-
browsers: ['sl_chrome', 'sl_firefox', 'sl_ie_11']
79-
}
8076
},
8177

8278
uglify: {
@@ -145,11 +141,6 @@ module.exports = function(grunt) {
145141

146142
grunt.task.loadTasks('tasks');
147143

148-
grunt.registerTask('travis',
149-
!process.env.KARMA && process.env.SAUCE_USERNAME
150-
? ['clean', 'build', 'karma:unit', 'karma:sauce', 'cover']
151-
: ['clean', 'build', 'cover']);
152-
153144
grunt.registerTask('dev', ['clean', 'watch']);
154145
grunt.registerTask('default', ['clean', 'build', 'cover']);
155146
};

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# jsdiff
22

3-
[![Build Status](https://secure.travis-ci.org/kpdecker/jsdiff.svg)](http://travis-ci.org/kpdecker/jsdiff)
4-
[![Sauce Test Status](https://saucelabs.com/buildstatus/jsdiff)](https://saucelabs.com/u/jsdiff)
5-
63
A JavaScript text differencing implementation. Try it out in the **[online demo](https://kpdecker.github.io/jsdiff)**.
74

85
Based on the algorithm proposed in
@@ -319,8 +316,6 @@ Diff.applyPatches(patch, {
319316
320317
## Compatibility
321318
322-
[![Sauce Test Status](https://saucelabs.com/browser-matrix/jsdiff.svg)](https://saucelabs.com/u/jsdiff)
323-
324319
jsdiff supports all ES3 environments with some known issues on IE8 and below. Under these browsers some diff algorithms such as word diff and others may fail due to lack of support for capturing groups in the `split` operation.
325320
326321
## License

karma.conf.js

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,6 @@
22
/* eslint-disable no-var, camelcase */
33
module.exports = function(config) {
44
var customLaunchers = {
5-
sl_chrome: {
6-
base: 'SauceLabs',
7-
browserName: 'chrome'
8-
},
9-
sl_firefox: {
10-
base: 'SauceLabs',
11-
browserName: 'firefox'
12-
},
13-
sl_ie_11: {
14-
base: 'SauceLabs',
15-
browserName: 'internet explorer',
16-
version: '11'
17-
},
185
HeadlessChrome: {
196
base: 'ChromeHeadless',
207
flags: ['--no-sandbox']
@@ -49,11 +36,7 @@ module.exports = function(config) {
4936
noInfo: true
5037
},
5138

52-
sauceLabs: {
53-
testName: 'jsdiff'
54-
},
55-
56-
reporters: ['mocha', 'saucelabs'],
39+
reporters: ['mocha'],
5740

5841
customLaunchers: customLaunchers,
5942
port: 9876,

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
"karma-chrome-launcher": "^3.2.0",
7676
"karma-mocha": "^2.0.1",
7777
"karma-mocha-reporter": "^2.2.5",
78-
"karma-sauce-launcher": "^4.3.6",
7978
"karma-sourcemap-loader": "^0.4.0",
8079
"karma-webpack": "^5.0.1",
8180
"mocha": "^6.0.0",

0 commit comments

Comments
 (0)