Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

merging to master #73

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div align="center">🚀 (4KB gzipped)</div>
<div align="center">
<strong>Websocket client for AdonisJs.</strong>
<p>This repo contains a simple to use Jabascript client to connect with the AdonisJs websocket server.</p>
<p>This repo contains a simple to use Javascript client to connect with the AdonisJs websocket server.</p>
</div>

<br />
Expand All @@ -28,7 +28,7 @@
Official Docs
</a>
<span> | </span>
<a href="https://github.com/adonisjs/adonis-websocket-vue">
<a href="https://github.com/reg2005/adonis-vue-websocket">
Vue Plugin
</a>
</h3>
Expand Down
6 changes: 3 additions & 3 deletions bin/qunit.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
const chalk = require('chalk')
const path = require('path')
const rollup = require('rollup')
const opn = require('opn')
const open = require('open')
const ngrok = require('ngrok')
const ws = require('./server')
const saucelabs = require('./saucelabs')
Expand Down Expand Up @@ -128,7 +128,7 @@ async function start () {
if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) {
console.log(chalk`{yellow pass SAUCE_USERNAME & SAUCE_ACCESS_KEY to run tests on saucelabs}`)
console.log(chalk`{yellow Also make sure to quit this process manually}`)
opn(`http://localhost:${PORT}`)
open(`http://localhost:${PORT}`)
return
}

Expand Down Expand Up @@ -168,7 +168,7 @@ async function start () {
const buildId = `build-${new Date().getTime()}`
console.log('annotating jobs result')

for (let result of results) {
for (const result of results) {
await saucelabs.annotateJob(result.job_id, buildId, result.result.failed === 0)
}

Expand Down
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = function (config) {

// list of files / patterns to load in the browser
files: [
'node_modules/babel-polyfill/dist/polyfill.js',
'node_modules/@babel/polyfill/dist/polyfill.js',
{ pattern: 'test/unit/*.spec.js', watched: false }
],

Expand Down
Loading