refactor(ci): cleanup GH actions
[poolifier.git] / tests / worker-files / thread / emptyWorker.mjs
... / ...
CommitLineData
1import { KillBehaviors, ThreadWorker } from '../../../lib/index.cjs'
2
3/**
4 *
5 */
6function test () {}
7
8export default new ThreadWorker(test, {
9 killBehavior: KillBehaviors.HARD,
10 maxInactiveTime: 500,
11})