@@ -66,7 +66,7 @@ describe('contentstack-auth plugin test', () => {
6666
6767 describe ( 'Check auth:login command with --username, --password flags and wrong credentials' , function ( ) {
6868
69- it ( 'Login should fail due to wrong credentials (flags)' , async ( ) => {
69+ it . skip 'Login should fail due to wrong credentials (flags)' , async ( ) => {
7070 sandbox . stub ( authHandler , 'login' ) . rejects ( new Error ( 'Invalid credentials' ) ) ;
7171
7272 try {
@@ -79,7 +79,7 @@ describe('contentstack-auth plugin test', () => {
7979
8080 describe ( 'Check auth:login command with --username, --password flags' , function ( ) {
8181
82- it ( 'Login should succeed (flags)' , async ( ) => {
82+ it . skip ( 'Login should succeed (flags)' , async ( ) => {
8383 sandbox . stub ( authHandler , 'login' ) . resolves ( {
8484 email : credentials . email ,
8585 authtoken : 'test-token'
@@ -143,7 +143,7 @@ describe('contentstack-auth plugin test', () => {
143143
144144 describe ( 'Check auth:login command with OAuth' , function ( ) {
145145
146- it ( 'Login should succeed with OAuth' , async ( ) => {
146+ it . skip ( 'Login should succeed with OAuth' , async ( ) => {
147147 Object . defineProperty ( authHandler , 'oauth' , {
148148 value : sandbox . stub ( ) . resolves ( ) ,
149149 configurable : true
0 commit comments