Skip to content

Commit

Permalink
revert: test_mvnw.js
Browse files Browse the repository at this point in the history
  • Loading branch information
slry committed May 28, 2024
1 parent 2f13a59 commit a3459ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test_mvnw.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
* SOFTWARE.
*/

const { mvnw } = require("../src/mvnw");
const {mvnw} = require('../src/mvnw');

describe("mvnw", function() {
it("prints Maven own version", function(done) {
const opts = { batch: true };
mvnw(["--version", "--quiet"], null, opts.batch);
describe('mvnw', function() {
it('prints Maven own version', function(done) {
const opts = {batch: true};
mvnw(['--version', '--quiet'], null, opts.batch);
done();
});
});

0 comments on commit a3459ab

Please sign in to comment.