Skip to content

Commit

Permalink
- Use file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Apr 30, 2021
1 parent 5c148ab commit aa4d1d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@


import { Controller } from '../src/estraverse.js';
import Dumper from './dumper';
import checkDump from './checkDump';
import Dumper from './dumper.js';
import checkDump from './checkDump.js';

describe('controller', function() {
it('traverse', function() {
Expand Down
4 changes: 2 additions & 2 deletions test/es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


import Dumper from './dumper';
import checkDump from './checkDump';
import Dumper from './dumper.js';
import checkDump from './checkDump.js';
import { parse as esprima } from 'esprima';
import { parse as espree } from 'espree';

Expand Down
4 changes: 2 additions & 2 deletions test/traverse.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


import Dumper from './dumper';
import checkDump from './checkDump';
import Dumper from './dumper.js';
import checkDump from './checkDump.js';
import { traverse } from '../src/estraverse.js';

describe('object expression', function() {
Expand Down

0 comments on commit aa4d1d8

Please sign in to comment.