File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
test/commands/texei/skinnyprofile Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
2
+ /* eslint-disable @typescript-eslint/no-unsafe-call */
3
+ /* eslint-disable @typescript-eslint/restrict-template-expressions */
4
+ /* eslint-disable @typescript-eslint/no-unsafe-argument */
5
+ /* eslint-disable @typescript-eslint/no-unsafe-assignment */
1
6
import * as path from 'node:path' ;
2
7
import { promises as fs } from 'node:fs' ;
3
8
import { Config , expect } from '@salesforce/command/lib/test' ;
4
- import Retrieve from '../../../../src/commands/texei/skinnyprofile/retrieve' ;
5
- import { permissionSetNodes } from '../../../../src/shared/skinnyProfileHelper' ;
9
+ import Retrieve from '../../../../src/commands/texei/skinnyprofile/retrieve.js ' ;
10
+ import { permissionSetNodes } from '../../../../src/shared/skinnyProfileHelper.js ' ;
6
11
7
12
describe ( 'skinnyprofile:retrieve' , ( ) => {
8
13
const config = new Config ( { root : path . resolve ( __dirname , '../../package.json' ) } ) ;
14
+ // @ts -ignore: TODO: working code, but look at TS warning
9
15
const retrieve : Retrieve = new Retrieve ( [ ] , config ) ;
10
16
11
17
it ( 'retrieves a profile with only profile-specific nodes' , async ( ) => {
You can’t perform that action at this time.
0 commit comments