mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-17 23:51:46 -08:00
18 lines
650 B
TypeScript
18 lines
650 B
TypeScript
import { License } from '@/License';
|
|
import { LoadNodesAndCredentials } from '@/LoadNodesAndCredentials';
|
|
import { ClearLicenseCommand } from '@/commands/license/clear';
|
|
|
|
import { setupTestCommand } from '@test-integration/utils/testCommand';
|
|
import { mockInstance } from '../../shared/mocking';
|
|
|
|
mockInstance(LoadNodesAndCredentials);
|
|
const license = mockInstance(License);
|
|
const command = setupTestCommand(ClearLicenseCommand);
|
|
|
|
test('license:clear invokes shutdown() to release any floating entitlements', async () => {
|
|
await command.run();
|
|
|
|
expect(license.init).toHaveBeenCalledTimes(1);
|
|
expect(license.shutdown).toHaveBeenCalledTimes(1);
|
|
});
|