Skip to content

Commit 14cf655

Browse files
committed
test: labels on nut projects
1 parent 603c7e6 commit 14cf655

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

test/nut/async-create-resume.nut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('env:create:scratch async/resume', () => {
3939

4040
before(async () => {
4141
session = await TestSession.create({
42-
project: {},
42+
project: { name: 'asyncCreateResume' },
4343
devhubAuthStrategy: 'AUTO',
4444
});
4545
cacheFilePath = path.join(session.dir, '.sf', ScratchOrgCache.getFileName());

test/nut/listAndDisplay.nut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe('Org Command NUT', () => {
5454

5555
before(async () => {
5656
session = await TestSession.create({
57-
project: { name: 'forceOrgList' },
57+
project: { name: 'listAndDisplay' },
5858
devhubAuthStrategy: 'AUTO',
5959
scratchOrgs: [
6060
{

test/nut/scratchCreate.nut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('env create scratch NUTs', () => {
2929

3030
before(async () => {
3131
session = await TestSession.create({
32-
project: {},
32+
project: { name: 'scratchOrgCreate' },
3333
devhubAuthStrategy: 'AUTO',
3434
});
3535
});

test/nut/scratchDelete.nut.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,20 @@ describe('env:delete:scratch NUTs', () => {
1818

1919
before(async () => {
2020
session = await TestSession.create({
21-
project: {},
21+
project: { name: 'scratchOrgDelete' },
2222
devhubAuthStrategy: 'AUTO',
2323
scratchOrgs: [
2424
{
25-
executable: 'sf',
2625
alias: scratchOrgAlias,
2726
duration: 1,
2827
config: path.join('config', 'project-scratch-def.json'),
2928
},
3029
{
31-
executable: 'sf',
3230
alias: scratchOrgAlias2,
3331
duration: 1,
3432
config: path.join('config', 'project-scratch-def.json'),
3533
},
3634
{
37-
executable: 'sf',
3835
setDefault: true,
3936
duration: 1,
4037
config: path.join('config', 'project-scratch-def.json'),

0 commit comments

Comments
 (0)