better named tests
parent
d3b848e220
commit
294c74f376
|
|
@ -8,11 +8,8 @@ import { CloudRunnerSystem } from '../services/cloud-runner-system';
|
|||
import { Caching } from './caching';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import GitHub from '../../github';
|
||||
|
||||
describe('Cloud Runner Caching', () => {
|
||||
describe('Cloud Runner (RemoteClient) Caching', () => {
|
||||
it('responds', () => {});
|
||||
});
|
||||
describe('Cloud Runner Caching', () => {
|
||||
if (process.platform === 'linux') {
|
||||
it('Simple caching works', async () => {
|
||||
Cli.options = {
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ async function CreateParameters(overrides) {
|
|||
return await BuildParameters.create();
|
||||
}
|
||||
|
||||
describe('Cloud Runner', () => {
|
||||
describe('Cloud Runner Caching', () => {
|
||||
it('Responds', () => {});
|
||||
setups();
|
||||
if (CloudRunnerOptions.cloudRunnerTests) {
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ async function CreateParameters(overrides) {
|
|||
|
||||
return results;
|
||||
}
|
||||
describe('Cloud Runner', () => {
|
||||
describe('Cloud Runner Sync Environments', () => {
|
||||
setups();
|
||||
const testSecretName = 'testSecretName';
|
||||
const testSecretValue = 'testSecretValue';
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import SharedWorkspaceLocking from '../../cli/shared-workspace-locking';
|
|||
import { Cli } from '../../cli/cli';
|
||||
import setups from './cloud-runner-suite.test';
|
||||
|
||||
describe('Cloud Runner', () => {
|
||||
describe('Cloud Runner Locking', () => {
|
||||
setups();
|
||||
it('Locking', async () => {
|
||||
Cli.options.retainWorkspaces = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue