@pattern-lab/live-server
Version:
simple development http server with live reload capability
49 lines (45 loc) • 1.26 kB
JavaScript
var request = require('supertest');
var path = require('path');
// accept self-signed certificates
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
function tests(liveServer) {
it('should reply with a correct index file', function (done) {
request(liveServer)
.get('/index.html')
.expect('Content-Type', 'text/html; charset=UTF-8')
.expect(/Hello world/i)
.expect(200, done);
});
it('should support head request', function (done) {
request(liveServer)
.head('/index.html')
.expect('Content-Type', 'text/html; charset=UTF-8')
.expect(200, done);
});
}
describe('https tests with external module', function () {
var opts = {
root: path.join(__dirname, 'data'),
port: 0,
open: false,
https: path.join(__dirname, 'conf/https.conf.js'),
};
var liveServer = require('..').start(opts);
tests(liveServer);
after(function () {
liveServer.close();
});
});
describe('https tests with object', function () {
var opts = {
root: path.join(__dirname, 'data'),
port: 0,
open: false,
https: require(path.join(__dirname, 'conf/https.conf.js')),
};
var liveServer = require('..').start(opts);
tests(liveServer);
after(function () {
liveServer.close();
});
});