@@ -10,7 +10,7 @@ const os_util = require('../../../util/os_utils');
10
10
const fs_utils = require ( '../../../util/fs_utils' ) ;
11
11
const { ConfigFS } = require ( '../../../sdk/config_fs' ) ;
12
12
const { set_path_permissions_and_owner, TMP_PATH , generate_s3_policy, CLI_UNSET_EMPTY_STRING ,
13
- set_nc_config_dir_in_config } = require ( '../../system_tests/test_utils' ) ;
13
+ set_nc_config_dir_in_config, TEST_TIMEOUT } = require ( '../../system_tests/test_utils' ) ;
14
14
const { ACTIONS , TYPES } = require ( '../../../manage_nsfs/manage_nsfs_constants' ) ;
15
15
const { get_process_fs_context, is_path_exists, get_bucket_tmpdir_full_path } = require ( '../../../util/native_fs_utils' ) ;
16
16
const ManageCLIError = require ( '../../../manage_nsfs/manage_nsfs_cli_errors' ) . ManageCLIError ;
@@ -68,7 +68,7 @@ describe('manage nsfs cli bucket flow', () => {
68
68
// account add (account 2 without new_buckets_path)
69
69
const account_options2 = { config_root, ...account_defaults2 } ;
70
70
await exec_manage_cli ( TYPES . ACCOUNT , action , account_options2 ) ;
71
- } ) ;
71
+ } , TEST_TIMEOUT ) ;
72
72
73
73
afterEach ( async ( ) => {
74
74
await fs_utils . folder_delete ( `${ config_root } ` ) ;
@@ -284,7 +284,7 @@ describe('manage nsfs cli bucket flow', () => {
284
284
await fs_utils . create_fresh_path ( bucket_path ) ;
285
285
await fs_utils . file_must_exist ( bucket_path ) ;
286
286
await set_path_permissions_and_owner ( bucket_path , account_options , 0o700 ) ;
287
- } ) ;
287
+ } , TEST_TIMEOUT ) ;
288
288
289
289
afterEach ( async ( ) => {
290
290
await fs_utils . folder_delete ( `${ config_root } ` ) ;
@@ -474,7 +474,7 @@ describe('manage nsfs cli bucket flow', () => {
474
474
const resp = await exec_manage_cli ( TYPES . BUCKET , action , bucket_options ) ;
475
475
const bucket_resp = JSON . parse ( resp ) ;
476
476
expect ( bucket_resp . response . reply . _id ) . not . toBeNull ( ) ;
477
- } ) ;
477
+ } , TEST_TIMEOUT ) ;
478
478
479
479
afterEach ( async ( ) => {
480
480
await fs_utils . folder_delete ( `${ config_root } ` ) ;
@@ -708,7 +708,7 @@ describe('manage nsfs cli bucket flow', () => {
708
708
bucket_temp_dir_path = get_bucket_tmpdir_full_path ( bucket_storage_path , bucket_resp . response . reply . _id ) ;
709
709
await fs_utils . create_fresh_path ( bucket_temp_dir_path ) ;
710
710
await fs_utils . file_must_exist ( bucket_temp_dir_path ) ;
711
- } ) ;
711
+ } , TEST_TIMEOUT ) ;
712
712
713
713
afterEach ( async ( ) => {
714
714
await fs_utils . folder_delete ( `${ config_root } ` ) ;
@@ -827,7 +827,7 @@ describe('manage nsfs cli bucket flow', () => {
827
827
const resp = await exec_manage_cli ( TYPES . BUCKET , action , bucket_options ) ;
828
828
const bucket_resp = JSON . parse ( resp ) ;
829
829
expect ( bucket_resp . response . reply . _id ) . not . toBeNull ( ) ;
830
- } ) ;
830
+ } , TEST_TIMEOUT ) ;
831
831
832
832
afterEach ( async ( ) => {
833
833
await fs_utils . folder_delete ( `${ config_root } ` ) ;
@@ -887,7 +887,7 @@ describe('manage nsfs cli bucket flow', () => {
887
887
const resp = await exec_manage_cli ( TYPES . BUCKET , action , bucket_options ) ;
888
888
const bucket_resp = JSON . parse ( resp ) ;
889
889
expect ( bucket_resp . response . reply . _id ) . not . toBeNull ( ) ;
890
- } ) ;
890
+ } , TEST_TIMEOUT ) ;
891
891
892
892
afterEach ( async ( ) => {
893
893
await fs_utils . folder_delete ( `${ config_root } ` ) ;
0 commit comments