Skip to content

Commit

Permalink
Purge inactive/broken Travis and Sauce Labs integrations (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
ExplodingCabbage authored Mar 19, 2024
1 parent c9bc8e3 commit 16a060e
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 2,240 deletions.
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
.eslintrc
.gitignore
.npmignore
.travis.yml
.vscode
components
coverage
Expand Down
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

9 changes: 0 additions & 9 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,6 @@ module.exports = function(grunt) {
unit: {
singleRun: true
},
sauce: {
singleRun: true,
browsers: ['sl_chrome', 'sl_firefox', 'sl_ie_11']
}
},

uglify: {
Expand Down Expand Up @@ -145,11 +141,6 @@ module.exports = function(grunt) {

grunt.task.loadTasks('tasks');

grunt.registerTask('travis',
!process.env.KARMA && process.env.SAUCE_USERNAME
? ['clean', 'build', 'karma:unit', 'karma:sauce', 'cover']
: ['clean', 'build', 'cover']);

grunt.registerTask('dev', ['clean', 'watch']);
grunt.registerTask('default', ['clean', 'build', 'cover']);
};
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# jsdiff

[![Build Status](https://secure.travis-ci.org/kpdecker/jsdiff.svg)](http://travis-ci.org/kpdecker/jsdiff)
[![Sauce Test Status](https://saucelabs.com/buildstatus/jsdiff)](https://saucelabs.com/u/jsdiff)

A JavaScript text differencing implementation. Try it out in the **[online demo](https://kpdecker.github.io/jsdiff)**.

Based on the algorithm proposed in
Expand Down Expand Up @@ -319,8 +316,6 @@ Diff.applyPatches(patch, {
## Compatibility
[![Sauce Test Status](https://saucelabs.com/browser-matrix/jsdiff.svg)](https://saucelabs.com/u/jsdiff)
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.
## License
Expand Down
19 changes: 1 addition & 18 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,6 @@
/* eslint-disable no-var, camelcase */
module.exports = function(config) {
var customLaunchers = {
sl_chrome: {
base: 'SauceLabs',
browserName: 'chrome'
},
sl_firefox: {
base: 'SauceLabs',
browserName: 'firefox'
},
sl_ie_11: {
base: 'SauceLabs',
browserName: 'internet explorer',
version: '11'
},
HeadlessChrome: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
Expand Down Expand Up @@ -49,11 +36,7 @@ module.exports = function(config) {
noInfo: true
},

sauceLabs: {
testName: 'jsdiff'
},

reporters: ['mocha', 'saucelabs'],
reporters: ['mocha'],

customLaunchers: customLaunchers,
port: 9876,
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^4.3.6",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"mocha": "^6.0.0",
Expand Down
Loading

0 comments on commit 16a060e

Please sign in to comment.