Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Heber committed Sep 7, 2023
1 parent 935379b commit 9a1dc0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
14 changes: 1 addition & 13 deletions src/commands/warp/apex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,7 @@ import { Messages } from '@salesforce/core';
import ApexWarper, { Verbosity } from '../../lib/commands/apex';

Messages.importMessagesDirectory(__dirname);
const messages = Messages.load('sf-warp', 'warp.apex', [
'summary',
'description',
'examples',
'flags.analyze-only.summary',
'flags.class.summary',
// 'flags.file.summary',
'flags.test-class.summary',
'flags.timeout.summary',
'flags.test-class-match-pattern.summary',
'flags.test-class-match-pattern.description',
'flags.verbosity.summary',
]);
const messages = Messages.loadMessages('sf-warp', 'warp.apex');

export default class Apex extends SfCommand<any> {
public static readonly summary = messages.getMessage('summary');
Expand Down
5 changes: 5 additions & 0 deletions test/test1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function test123() {
// eslint-disable-next-line no-console
console.log('Tests Executed');
}
test123();

0 comments on commit 9a1dc0b

Please sign in to comment.