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

22 lines
493 B
JavaScript
Raw Normal View History

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