woocommerce/packages/js/api-core-tests/tests/hello/hello.test.js

20 lines
499 B
JavaScript
Raw Normal View History

const { getRequest } = require( '../../utils/request' );
2021-08-23 17:39:03 +00:00
/**
* Tests to verify connection to the API.
*
* @group hello
*
*/
describe( 'Test API connectivity', () => {
it( 'can access a non-authenticated endpoint', async () => {
2021-08-23 17:39:03 +00:00
const result = await getRequest( '' );
expect( result.statusCode ).toEqual( 200 );
} );
2021-08-23 17:39:03 +00:00
it( 'can access an authenticated endpoint', async () => {
2021-08-23 17:39:03 +00:00
const result = await getRequest( 'system_status' );
expect( result.statusCode ).toEqual( 200 );
} );
} );