Skip to content

Commit

Permalink
revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JoviDeCroock committed Dec 30, 2019
1 parent 1ea9ec1 commit 7193703
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
2 changes: 0 additions & 2 deletions debug/src/devtools/10/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ let defaultFilters = {
type: new Set(['dom', 'fragment'])
};

console.log('UNIQUE MESSAGE', process.env);

/**
* The renderer is responsible for translating anything preact rendered
* into a serializable format that is passed to the devtools extension.
Expand Down
4 changes: 2 additions & 2 deletions debug/test/browser/devtools/renderer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import {
} from '../../../src/devtools/10/constants';

/* global DISABLE_FLAKEY */
const itIfNotFlakey = process.env.DISABLE_FLAKEY ? xit : it;
console.log('UNIQUE MESSAGE', self.DISABLE_FLAKEY, DISABLE_FLAKEY);
const itIfNotFlakey = DISABLE_FLAKEY ? xit : it;
console.log('UNIQUE MESSAGE', DISABLE_FLAKEY);

/** @jsx createElement */

Expand Down
20 changes: 10 additions & 10 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ var sauceLabsLaunchers = {
browserName: 'firefox',
platform: 'Windows 10'
},
// TODO: Safari always fails and disconnects before any tests are executed.
// This seems to be an issue with Saucelabs and they're actively investigating
// that (see: https://mobile.twitter.com/bromann/status/1136323458328084482).
// We'll disable Safari for now until that's resolved.
// sl_safari: {
// base: 'SauceLabs',
// browserName: 'Safari',
// version: '11',
// platform: 'OS X 10.13'
// },
sl_edge: {
base: 'SauceLabs',
browserName: 'MicrosoftEdge',
Expand All @@ -33,16 +43,6 @@ var sauceLabsLaunchers = {
version: '11.0',
platform: 'Windows 7'
}
// TODO: Safari always fails and disconnects before any tests are executed.
// This seems to be an issue with Saucelabs and they're actively investigating
// that (see: https://mobile.twitter.com/bromann/status/1136323458328084482).
// We'll disable Safari for now until that's resolved.
// sl_safari: {
// base: 'SauceLabs',
// browserName: 'Safari',
// version: '11',
// platform: 'OS X 10.13'
// },
};

var localLaunchers = {
Expand Down

0 comments on commit 7193703

Please sign in to comment.