Skip to content

Commit ac3a0df

Browse files
Remove redundant code
- The return isn't needed. - `rmSync` isn't used.
1 parent 827c307 commit ac3a0df

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/test-app.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ const glob = require('glob');
55
const helpers = require('yeoman-test');
66
const os = require('os');
77
const path = require('path');
8-
const { rmSync } = require('fs');
98
const { spawnSync } = require('child_process');
109

1110
describe('aspnet-oauth:app', () => {
1211
before(async function () {
1312
this.timeout(10000);
14-
return await helpers.run(path.join(__dirname, '../generators/app'))
13+
await helpers.run(path.join(__dirname, '../generators/app'))
1514
.withOptions({ skipInstall: true })
1615
.withPrompts({
1716
name: 'Foo',

0 commit comments

Comments
 (0)