Files
BetterDesk/web-nodejs/tests/agentClientBuildWorker.test.js
T
UNITRONIX 8a96de6e86 feat(agent-client): production readiness — build pipeline, security, Generator
Restore agent-client to git and wire agentClientBuildWorker for Tauri builds
(deb/rpm/AppImage/MSI) with branding and Go sidecar staging. Add TLS gate,
settings lock, policy sync, preflight UI, CDAP registry, and Generator
product_type split (agent-client vs support-agent vs rdclient).
2026-06-20 22:50:51 +02:00

14 lines
502 B
JavaScript

'use strict';
const { describe, it } = require('node:test');
const assert = require('node:assert/strict');
describe('agentClientBuildWorker module', () => {
it('exports startWorker and enqueueBuildsForHash', () => {
const worker = require('../services/agentClientBuildWorker');
assert.equal(typeof worker.startWorker, 'function');
assert.equal(typeof worker.enqueueBuildsForHash, 'function');
assert.equal(typeof worker.rebuildBundleById, 'function');
});
});