Skip to content

Commit

Permalink
refactor: use explicit mocha imports (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored and NimJay committed Nov 18, 2022
1 parent 3108b23 commit 9158515
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
3 changes: 0 additions & 3 deletions dialogflow/system-test/.eslintrc.yml

This file was deleted.

1 change: 1 addition & 0 deletions dialogflow/system-test/detect.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

const path = require('path');
const {assert} = require('chai');
const {describe, it} = require('mocha');
const execSync = require('child_process').execSync;
const cmd = 'node detect.js';
const cmd_tts = 'node detect-intent-TTS-response.v2.js';
Expand Down
1 change: 1 addition & 0 deletions dialogflow/system-test/detect.v2beta1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'use strict';

const {assert} = require('chai');
const {describe, it} = require('mocha');
const {execSync} = require('child_process');
const uuid = require('uuid/v4');

Expand Down
1 change: 1 addition & 0 deletions dialogflow/system-test/resource.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'use strict';

const {assert} = require('chai');
const {describe, it} = require('mocha');
const execSync = require('child_process').execSync;
const uuid = require('uuid');
const exec = cmd => execSync(cmd, {encoding: 'utf8'});
Expand Down

0 comments on commit 9158515

Please sign in to comment.