Skip to content

Commit

Permalink
fix task names
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Aug 17, 2018
1 parent 1be2ae6 commit 206be58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/wine.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ test('Wine: Strict compilation with warning [async]', t => {
});
});

test('Print ${NSISDIR}', t => {
test('Wine: Print ${NSISDIR}', t => {
const nsisDir = makensis.nsisDirSync({wine: true});
let nsisCfg = spawnSync('winepath', [nsisDir]).stdout.toString().trim();
nsisCfg = join(nsisCfg, 'Include', 'MUI2.nsh');
Expand All @@ -347,7 +347,7 @@ test('Print ${NSISDIR}', t => {
t.is(actual, expected);
});

test('Print ${NSISDIR} [async]', t => {
test('Wine: Print ${NSISDIR} [async]', t => {
return Promise.resolve(makensis.nsisDir({wine: true}))
.then(nsisDir => {
let nsisCfg = spawnSync('winepath', [nsisDir]).stdout.toString().trim();
Expand All @@ -360,7 +360,7 @@ test('Print ${NSISDIR} [async]', t => {
});
});

test('Print ${NSISDIR} as JSON', t => {
test('Wine: Print ${NSISDIR} as JSON', t => {
const nsisDir = makensis.nsisDirSync({wine: true, json: true}).nsisdir;
const nsisCfg = join(nsisDir, 'Include', 'MUI2.nsh');

Expand All @@ -370,7 +370,7 @@ test('Print ${NSISDIR} as JSON', t => {
t.is(actual, expected);
});

test('Print ${NSISDIR} as JSON [async]', t => {
test('Wine: Print ${NSISDIR} as JSON [async]', t => {
return Promise.resolve(makensis.nsisDir({wine: true, json: true}))
.then(output => {
const nsisCfg = join(output.nsisdir, 'Include', 'MUI2.nsh');
Expand Down

0 comments on commit 206be58

Please sign in to comment.