Skip to content

Commit

Permalink
And a commit that I don't know the reason of...
Browse files Browse the repository at this point in the history
  • Loading branch information
omrilotan committed Aug 9, 2020
1 parent 6bfeb26 commit 46f0172
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 90 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.5.0",
"@lets/sleep": "^1.0.0",
"@lets/wait": "^2.0.2",
"@omrilotan/eslint-config": "^1.0.0",
"abuser": "^2.0.2",
"async-git": "^1.8.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslintrc/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
es6: true,
},
parserOptions: {
ecmaVersion: 9,
ecmaVersion: 11,
sourceType: 'module',
},
plugins: [
Expand Down
6 changes: 3 additions & 3 deletions packages/selenium-chrome-clear-cache/spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const RETRIES = process.env.CI ? 2 : 1;
const LINK = 'https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching';
const MEASURE = 'return performance.timing.loadEventEnd - performance.timing.navigationStart;';

describe('selenium-chrome-clear-cache', async() => {
xdescribe('selenium-chrome-clear-cache', async() => {
let driver;

beforeEach(async() => {
Expand All @@ -26,7 +26,7 @@ describe('selenium-chrome-clear-cache', async() => {
await wait(1000);
});

xit('Load times should decrease with cache and increase after clearing it', async() => {
it('Load times should decrease with cache and increase after clearing it', async() => {
const loadTimes = [];

await driver.get(LINK);
Expand All @@ -44,7 +44,7 @@ describe('selenium-chrome-clear-cache', async() => {
expect(loadTimes[2]).not.to.be.below(loadTimes[1]);
}).timeout(TIMEOUT).retries(RETRIES);

xit('Load times should decrease with cache and stay low after de-selecting history and cache', async() => {
it('Load times should decrease with cache and stay low after de-selecting history and cache', async() => {
const loadTimes = [];

await driver.get(LINK);
Expand Down
3 changes: 0 additions & 3 deletions packages/stringerprint/.npmignore

This file was deleted.

2 changes: 0 additions & 2 deletions packages/stringerprint/.npmrc

This file was deleted.

23 changes: 0 additions & 23 deletions packages/stringerprint/README.md

This file was deleted.

8 changes: 0 additions & 8 deletions packages/stringerprint/index.js

This file was deleted.

23 changes: 0 additions & 23 deletions packages/stringerprint/package.json

This file was deleted.

25 changes: 0 additions & 25 deletions packages/stringerprint/spec.js

This file was deleted.

4 changes: 2 additions & 2 deletions spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ chai.use(require('chai-as-promised'));
chai.use(require('sinon-chai'));
const sinon = require('sinon');
const abuser = require('abuser');
const wait = require('./packages/wait');
const sleep = require('./packages/sleep');
const wait = require('@lets/wait');
const sleep = require('@lets/sleep');

Object.assign(
global,
Expand Down

0 comments on commit 46f0172

Please sign in to comment.