Skip to content

Commit

Permalink
style: linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans committed Mar 11, 2021
1 parent 9b69972 commit 6156879
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -23,4 +23,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run clean && npm run build:dist && npx semantic-release
run: npm run clean && npm run build:dist && npx semantic-release
8 changes: 4 additions & 4 deletions test/karma.conf.js
@@ -1,14 +1,14 @@
const path = require("path");
process.env.CHROME_BIN = require('puppeteer').executablePath()
process.env.CHROME_BIN = require("puppeteer").executablePath();

module.exports = function (config) {
config.set({
/**
* General base config:
*/
basePath: path.join(__dirname, ".."),
frameworks: ["mocha", 'webpack'],
reporters: ['mocha'],
frameworks: ["mocha", "webpack"],
reporters: ["mocha"],

client: {
mocha: {
Expand Down Expand Up @@ -43,7 +43,7 @@ module.exports = function (config) {
/**
* Karma run config:
*/
browsers: ['ChromeHeadless'],
browsers: ["ChromeHeadless"],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
Expand Down

0 comments on commit 6156879

Please sign in to comment.