Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions cli/tests/generic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -506,9 +506,7 @@ test.describe('PMM Client "Generic" CLI tests', async () => {

test('PMM-T2025 - Verify that Nomad server is not running by default', async ({}) => {
const output = await cli.exec('docker exec pmm-server supervisorctl status | grep "nomad-server"');
await output.assertSuccess();
await output.outContains('STOPPED');
await output.outContains('Not started');
await output.exitCodeEquals(1);
});

test('PMM-T2031 - Verify that nomad is not listed in pmm-admin list, when not used.', async ({}) => {
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/pmm-server-only.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test.describe('PMM Server CLI tests for Docker Environment Variables', async ()
stopList.push('PMM-T225');
removeList.push('PMM-T225');
// @ts-ignore
await out.outContains('Configuration warning: unknown environment variable \\"PMM_DATA_TENTION=48\\".');
await out.outContains('Configuration warning: unknown environment variable PMM_DATA_TENTION=48.');
});

/**
Expand Down
Loading