mirror of
https://github.com/UNITRONIX/BetterDesk.git
synced 2026-09-10 09:35:39 +00:00
8a96de6e86
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).
14 lines
502 B
JavaScript
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');
|
|
});
|
|
});
|