mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
cc6b257470
* Move automated api tests to api directory * First pass at automated browser testing
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
var request = require('supertest');
|
|
request = request('http://127.0.0.1:8080');
|
|
|
|
test('service is online', (done) => {
|
|
request.get('/api/status').expect(200)
|
|
.then((res) => {
|
|
expect(res.body.online).toBe(true);
|
|
done();
|
|
});
|
|
});
|