Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Nov 30, 2021
1 parent 557fc94 commit 64eced6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/cli/test/cases/develop.spa/develop.spa.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,13 @@ describe('Develop Greenwood With: ', function() {
headers: {
accept: 'ext/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9'
}
}, (err, res, body) => {
}, (err, res) => {
if (err) {
reject();
}

response = res;

dom = new JSDOM(body);
resolve();
});
});
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-babel/test/cases/default/default.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import { URL } from 'url';

const expect = chai.expect;

describe.only('Build Greenwood With: ', function() {
describe('Build Greenwood With: ', function() {
const LABEL = 'Default Babel configuration';
const cliPath = path.join(process.cwd(), 'packages/cli/src/index.js');
const outputPath = path.dirname(new URL('', import.meta.url).pathname);
Expand Down

0 comments on commit 64eced6

Please sign in to comment.