Skip to content

Commit f3ccfc6

Browse files
JustinBeckwithbcoe
authored andcommitted
refactor: use explicit mocha imports (#497)
1 parent c5ef5f9 commit f3ccfc6

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
---
2-
env:
3-
mocha: true
42
rules:
53
no-console: off

packages/google-cloud-dialogflow/test/.eslintrc.yml

-3
This file was deleted.

packages/google-cloud-dialogflow/test/gapic-v2.js

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

1717
const assert = require('assert');
18+
const {describe, it} = require('mocha');
1819
const {PassThrough} = require('stream');
1920

2021
const dialogflowModule = require('../src');

packages/google-cloud-dialogflow/test/gapic-v2beta1.js

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

1717
const assert = require('assert');
18+
const {describe, it} = require('mocha');
1819
const {PassThrough} = require('stream');
1920

2021
const dialogflowModule = require('../src');

0 commit comments

Comments
 (0)