Skip to content

Commit

Permalink
ChakraAgent: don't pave the args property
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed May 25, 2018
1 parent c479a68 commit 9d36c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/agents/ch.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const ConsoleAgent = require('../ConsoleAgent');
class ChakraAgent extends ConsoleAgent {
constructor(options) {
super(options);
this.args = ['-Test262'];
this.args.push('-Test262');
}
parseError(str) {
const error = super.parseError(str);
Expand Down

0 comments on commit 9d36c9e

Please sign in to comment.