Skip to content

Commit

Permalink
Remove test code
Browse files Browse the repository at this point in the history
  • Loading branch information
marode-cap committed Jun 26, 2024
1 parent 19d7087 commit de2cb27
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/modules/itslearning/itslearning.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { lastValueFrom } from 'rxjs';
import { ItsLearningConfig, ServerConfig } from '../../shared/config/index.js';
import { DomainError, ItsLearningError } from '../../shared/error/index.js';
import { IMSESAction } from './actions/base-action.js';
import { CreatePersonAction } from './actions/create-person.action.js';

@Injectable()
export class ItsLearningIMSESService {
Expand All @@ -30,18 +29,6 @@ export class ItsLearningIMSESService {
this.endpoint = itsLearningConfig.ENDPOINT;
this.username = itsLearningConfig.USERNAME;
this.password = itsLearningConfig.PASSWORD;

this.send(
new CreatePersonAction({
id: 'MARVIN',
firstName: 'Marvin',
lastName: 'Test',
username: 'matest2',
institutionRoleType: 'Learner',
}),
)
.then(console.log)
.catch(console.error);
}

public async send<ResponseBody, ResultType>(
Expand Down

0 comments on commit de2cb27

Please sign in to comment.