1function sayHello() {
2 console.log("hello");
3}
4
5// calls the sayHello function after 1000 milisecends
6setTimeout(sayHello, 1000);
7
1"scripts": { "test:system": "npm-run-all build -p -r serve test", "build": "webpack", "serve": "serve -p 8000", "test": "wait-on http://localhost:8001 && npm run test:codecept", "test:codecept": "codecept",}