-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
/
Copy pathserver.js
32 lines (26 loc) · 841 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import * as process from 'node:process';
import { create } from 'browser-sync';
import { testConfig } from '../../server.configs.js';
const bsServer = create();
export async function startServer() {
// Wait for server to start
return new Promise(resolve => {
const settings = testConfig;
console.log('\n');
bsServer.init(settings, () => {
// Exit process if specified port is not available. BrowserSync
// auto-selects a new port if the specified port is unavailable. This is
// problematic for testing and CI/CD.
if (bsServer.getOption('port') !== settings.port) {
console.log(
`\nPort ${settings.port} not available. Exiting process.\n`,
);
process.exit(0);
}
resolve(bsServer);
});
});
}
export function stopServer() {
bsServer.exit();
}