Skip to content

Commit aee1588

Browse files
JustinBeckwithbcoe
authored andcommitted
refactor: use explicit mocha imports (#332)
1 parent bc4f695 commit aee1588

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

packages/google-cloud-dns/system-test/dns.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
import * as assert from 'assert';
16+
import {describe, it} from 'mocha';
1617
import * as fs from 'fs';
1718
import * as tmp from 'tmp';
1819
import * as util from 'util';

packages/google-cloud-dns/test/change.ts

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
} from '@google-cloud/common';
2020
import * as promisify from '@google-cloud/promisify';
2121
import * as assert from 'assert';
22+
import {describe, it} from 'mocha';
2223
import * as proxyquire from 'proxyquire';
2324

2425
import {Change} from '../src/change';

packages/google-cloud-dns/test/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import {
2121
import * as promisify from '@google-cloud/promisify';
2222
import arrify = require('arrify');
2323
import * as assert from 'assert';
24+
import {describe, it} from 'mocha';
2425
import * as proxyquire from 'proxyquire';
2526
import {CoreOptions, OptionsWithUri, Response} from 'request';
2627

packages/google-cloud-dns/test/record.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import * as promisify from '@google-cloud/promisify';
1616
import * as assert from 'assert';
17+
import {describe, it} from 'mocha';
1718
import * as proxyquire from 'proxyquire';
1819

1920
import {Record} from '../src';

packages/google-cloud-dns/test/zone.ts

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {ServiceObject, ServiceObjectConfig} from '@google-cloud/common';
1616
import * as promisify from '@google-cloud/promisify';
1717
import arrify = require('arrify');
1818
import * as assert from 'assert';
19+
import {describe, it} from 'mocha';
1920
import * as proxyquire from 'proxyquire';
2021
import {CoreOptions, OptionsWithUri, Response} from 'request';
2122
import * as uuid from 'uuid';

0 commit comments

Comments
 (0)