@@ -940,9 +940,7 @@ describe('Model Armor tests', () => {
940
940
941
941
// =================== Floor Settings Tests ===================
942
942
943
- // TODO(b/424365799): Enable below tests once the mentioned issue is resolved
944
-
945
- it . skip ( 'should get organization floor settings' , async ( ) => {
943
+ it ( 'should get organization floor settings' , async ( ) => {
946
944
const getOrganizationFloorSettings = require ( '../snippets/getOrganizationFloorSettings' ) ;
947
945
948
946
const output = await getOrganizationFloorSettings . main ( organizationId ) ;
@@ -951,7 +949,7 @@ describe('Model Armor tests', () => {
951
949
assert . equal ( output . name , expectedName ) ;
952
950
} ) ;
953
951
954
- it . skip ( 'should get folder floor settings' , async ( ) => {
952
+ it ( 'should get folder floor settings' , async ( ) => {
955
953
const getFolderFloorSettings = require ( '../snippets/getFolderFloorSettings' ) ;
956
954
957
955
const output = await getFolderFloorSettings . main ( folderId ) ;
@@ -961,7 +959,7 @@ describe('Model Armor tests', () => {
961
959
assert . equal ( output . name , expectedName ) ;
962
960
} ) ;
963
961
964
- it . skip ( 'should get project floor settings' , async ( ) => {
962
+ it ( 'should get project floor settings' , async ( ) => {
965
963
const getProjectFloorSettings = require ( '../snippets/getProjectFloorSettings' ) ;
966
964
967
965
const output = await getProjectFloorSettings . main ( projectId ) ;
@@ -970,21 +968,21 @@ describe('Model Armor tests', () => {
970
968
assert . equal ( output . name , expectedName ) ;
971
969
} ) ;
972
970
973
- it . skip ( 'should update organization floor settings' , async ( ) => {
971
+ it ( 'should update organization floor settings' , async ( ) => {
974
972
const updateOrganizationFloorSettings = require ( '../snippets/updateOrganizationFloorSettings' ) ;
975
973
const output = await updateOrganizationFloorSettings . main ( organizationId ) ;
976
974
// Check that the enableFloorSettingEnforcement=true
977
975
assert . equal ( output . enableFloorSettingEnforcement , true ) ;
978
976
} ) ;
979
977
980
- it . skip ( 'should update folder floor settings' , async ( ) => {
978
+ it ( 'should update folder floor settings' , async ( ) => {
981
979
const updateFolderFloorSettings = require ( '../snippets/updateFolderFloorSettings' ) ;
982
980
const output = await updateFolderFloorSettings . main ( folderId ) ;
983
981
// Check that the enableFloorSettingEnforcement=true
984
982
assert . equal ( output . enableFloorSettingEnforcement , true ) ;
985
983
} ) ;
986
984
987
- it . skip ( 'should update project floor settings' , async ( ) => {
985
+ it ( 'should update project floor settings' , async ( ) => {
988
986
const updateProjectFloorSettings = require ( '../snippets/updateProjectFloorSettings' ) ;
989
987
const output = await updateProjectFloorSettings . main ( projectId ) ;
990
988
// Check that the enableFloorSettingEnforcement=true
0 commit comments