Skip to content

Commit

Permalink
Merge 6156879 into c9ab2f1
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans committed Mar 11, 2021
2 parents c9ab2f1 + 6156879 commit 17c6566
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/CI.yml
Expand Up @@ -63,7 +63,7 @@ jobs:
run: npm ci

- name: Run InfluxDB
run: docker run -d -p 8083:8083 -p 8086:8086 influxdb
run: docker run -d -p 8083:8083 -p 8086:8086 influxdb:1.8

- name: Run tests
run: npm run test:ci
Expand All @@ -72,4 +72,3 @@ jobs:
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

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 17c6566

Please sign in to comment.