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 */
16import * as path from 'node:path' ;
27import { promises as fs } from 'node:fs' ;
38import { 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 ' ;
611
712describe ( 'skinnyprofile:retrieve' , ( ) => {
813 const config = new Config ( { root : path . resolve ( __dirname , '../../package.json' ) } ) ;
14+ // @ts -ignore: TODO: working code, but look at TS warning
915 const retrieve : Retrieve = new Retrieve ( [ ] , config ) ;
1016
1117 it ( 'retrieves a profile with only profile-specific nodes' , async ( ) => {
You can’t perform that action at this time.
0 commit comments