Skip to content

Commit b70649b

Browse files
JustinBeckwithbcoe
authored andcommitted
refactor: use explicit mocha imports (#497)
1 parent 214f1e1 commit b70649b

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

dialogflow/system-test/.eslintrc.yml

-3
This file was deleted.

dialogflow/system-test/detect.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
const path = require('path');
1818
const {assert} = require('chai');
19+
const {describe, it} = require('mocha');
1920
const execSync = require('child_process').execSync;
2021
const cmd = 'node detect.js';
2122
const cmd_tts = 'node detect-intent-TTS-response.v2.js';

dialogflow/system-test/detect.v2beta1.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
'use strict';
1616

1717
const {assert} = require('chai');
18+
const {describe, it} = require('mocha');
1819
const {execSync} = require('child_process');
1920
const uuid = require('uuid/v4');
2021

dialogflow/system-test/resource.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
'use strict';
1616

1717
const {assert} = require('chai');
18+
const {describe, it} = require('mocha');
1819
const execSync = require('child_process').execSync;
1920
const uuid = require('uuid');
2021
const exec = cmd => execSync(cmd, {encoding: 'utf8'});

0 commit comments

Comments
 (0)