Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

18 lines
468 B
TypeScript

import assert from 'node:assert';
import { test } from 'node:test';
import { resolve } from 'node:path';
import Piscina from '..';
test('pool will maintain run and wait time histograms', async () => {
const pool = new Piscina({
filename: resolve(__dirname, 'fixtures/vm.js')
});
try {
await pool.run({ payload: 'throw new Error("foo")' });
assert.fail('Expected an error');
} catch (error) {
assert.strictEqual(error.message, 'foo');
}
});