@@ -808,7 +808,7 @@ describe('Class Level Permissions for requiredAuth', () => {
808
808
user . set ( "password" , "world" ) ;
809
809
return user . signUp ( null ) ;
810
810
}
811
- it ( 'required auth test find' , ( done ) => {
811
+ it_exclude_dbs ( [ 'postgres' ] ) ( 'required auth test find' , ( done ) => {
812
812
config . database . loadSchema ( ) . then ( ( schema ) => {
813
813
// Just to create a valid class
814
814
return schema . validateObject ( 'Stuff' , { foo : 'bar' } ) ;
@@ -830,7 +830,7 @@ describe('Class Level Permissions for requiredAuth', () => {
830
830
} ) ;
831
831
} ) ;
832
832
833
- it ( 'required auth test find authenticated' , ( done ) => {
833
+ it_exclude_dbs ( [ 'postgres' ] ) ( 'required auth test find authenticated' , ( done ) => {
834
834
config . database . loadSchema ( ) . then ( ( schema ) => {
835
835
// Just to create a valid class
836
836
return schema . validateObject ( 'Stuff' , { foo : 'bar' } ) ;
@@ -855,7 +855,7 @@ describe('Class Level Permissions for requiredAuth', () => {
855
855
} ) ;
856
856
} ) ;
857
857
858
- it ( 'required auth test create authenticated' , ( done ) => {
858
+ it_exclude_dbs ( [ 'postgres' ] ) ( 'required auth test create authenticated' , ( done ) => {
859
859
config . database . loadSchema ( ) . then ( ( schema ) => {
860
860
// Just to create a valid class
861
861
return schema . validateObject ( 'Stuff' , { foo : 'bar' } ) ;
@@ -880,7 +880,7 @@ describe('Class Level Permissions for requiredAuth', () => {
880
880
} ) ;
881
881
} ) ;
882
882
883
- it ( 'required auth test create authenticated' , ( done ) => {
883
+ it_exclude_dbs ( [ 'postgres' ] ) ( 'required auth test create authenticated' , ( done ) => {
884
884
config . database . loadSchema ( ) . then ( ( schema ) => {
885
885
// Just to create a valid class
886
886
return schema . validateObject ( 'Stuff' , { foo : 'bar' } ) ;
@@ -903,7 +903,7 @@ describe('Class Level Permissions for requiredAuth', () => {
903
903
} ) ;
904
904
} ) ;
905
905
906
- it ( 'required auth test create/get/update/delete authenticated' , ( done ) => {
906
+ it_exclude_dbs ( [ 'postgres' ] ) ( 'required auth test create/get/update/delete authenticated' , ( done ) => {
907
907
config . database . loadSchema ( ) . then ( ( schema ) => {
908
908
// Just to create a valid class
909
909
return schema . validateObject ( 'Stuff' , { foo : 'bar' } ) ;
@@ -944,7 +944,7 @@ describe('Class Level Permissions for requiredAuth', () => {
944
944
} ) ;
945
945
} ) ;
946
946
947
- it ( 'required auth test create/get/update/delete not authenitcated' , ( done ) => {
947
+ it_exclude_dbs ( [ 'postgres' ] ) ( 'required auth test create/get/update/delete not authenitcated' , ( done ) => {
948
948
config . database . loadSchema ( ) . then ( ( schema ) => {
949
949
// Just to create a valid class
950
950
return schema . validateObject ( 'Stuff' , { foo : 'bar' } ) ;
@@ -979,7 +979,7 @@ describe('Class Level Permissions for requiredAuth', () => {
979
979
} ) ;
980
980
} ) ;
981
981
982
- it ( 'required auth test create/get/update/delete not authenitcated' , ( done ) => {
982
+ it_exclude_dbs ( [ 'postgres' ] ) ( 'required auth test create/get/update/delete not authenitcated' , ( done ) => {
983
983
config . database . loadSchema ( ) . then ( ( schema ) => {
984
984
// Just to create a valid class
985
985
return schema . validateObject ( 'Stuff' , { foo : 'bar' } ) ;
0 commit comments