File tree 2 files changed +7
-2
lines changed
packages/google-cloud-dns
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 74
74
"eslint-config-prettier" : " ^3.0.0" ,
75
75
"eslint-plugin-node" : " ^7.0.0" ,
76
76
"eslint-plugin-prettier" : " ^2.6.0" ,
77
- "extend" : " ^3.0.1" ,
78
77
"ink-docstrap" : " ^1.3.2" ,
79
78
"intelli-espower-loader" : " ^1.0.1" ,
80
79
"jsdoc" : " ^3.5.5" ,
Original file line number Diff line number Diff line change @@ -29,8 +29,14 @@ const DNS = require('../');
29
29
const dns = new DNS ( ) ;
30
30
const DNS_DOMAIN = process . env . GCLOUD_TESTS_DNS_DOMAIN ;
31
31
32
+ if ( ! DNS_DOMAIN ) {
33
+ assert . fail (
34
+ `The 'GCLOUD_TESTS_DNS_DOMAIN' environment variable must be set to run the system tests.`
35
+ ) ;
36
+ }
37
+
32
38
// Only run the tests if there is a domain to test with.
33
- ( DNS_DOMAIN ? describe : describe . skip ) ( 'dns' , function ( ) {
39
+ describe ( 'dns' , function ( ) {
34
40
if ( ! DNS_DOMAIN ) {
35
41
// The test runner still executes this function, even if it is skipped.
36
42
return ;
You can’t perform that action at this time.
0 commit comments