Skip to content

Commit

Permalink
test: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Nov 14, 2024
1 parent 8ef2616 commit 3b1f621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/agentJobSpecCreate.test.ts → test/agents.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import { SfProject } from '@salesforce/core';
import { Agent } from '../src/agent';
import { AgentJobSpecCreateConfig } from '../src/types';

describe('agent job spec create test', () => {
describe('Agents', () => {
const $$ = new TestContext();
const testOrg = new MockTestOrgData();
$$.inProject(true);

process.env.SF_MOCK_DIR = 'test/mocks';

it('runs agent run test', async () => {
it('createSpec', async () => {
const connection = await testOrg.getConnection();
connection.instanceUrl = 'https://mydomain.salesforce.com';
const sfProject = SfProject.getInstance();
Expand All @@ -35,7 +35,7 @@ describe('agent job spec create test', () => {
expect(output).to.be.ok;
});

it('creates an agent', async () => {
it('create', async () => {
const connection = await testOrg.getConnection();
connection.instanceUrl = 'https://mydomain.salesforce.com';
const sfProject = SfProject.getInstance();
Expand Down

0 comments on commit 3b1f621

Please sign in to comment.