-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[import/order] Fix incorrect import reordering #1253
Conversation
Fixes import-js#1252. - Reordering import statement to line below ignores uncrossable statements - Add more tests for ordering around function call
9 similar comments
I have no idea why ci builds failed. Seams like build for eslint5 broken. |
@tihonove can you rebase this? |
Anything I can do to help? |
fn_call(); | ||
|
||
const global1 = require('global1'); | ||
const global2 = require('global2'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
without the fix, i get this output (and a test failure):
AssertionError [ERR_ASSERTION] [ERR_ASSERTION]: Output is incorrect.
+ expected
- actual
+ const local = require('./local');
fn_call();
const global1 = require('global1');
const global2 = require('global2');
- const local = require('./local');
fn_call();
// reorder fix cannot cross function call on moving below #2 | ||
test({ | ||
code: ` | ||
const local = require('./local'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AssertionError [ERR_ASSERTION] [ERR_ASSERTION]: Output is incorrect.
+ expected
- actual
+ const local = require('./local');
fn_call();
const global1 = require('global1');
const global2 = require('global2');
- const local = require('./local');
fn_call();
// reorder fix cannot cross function call on moving below #3 | ||
test({ | ||
code: ` | ||
const local1 = require('./local1'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AssertionError [ERR_ASSERTION] [ERR_ASSERTION]: Output is incorrect.
+ expected
- actual
+ const local1 = require('./local1');
const local2 = require('./local2');
const local3 = require('./local3');
const local4 = require('./local4');
fn_call();
const global2 = require('global2');
const global3 = require('global3');
const global4 = require('global4');
const global5 = require('global5');
- const local1 = require('./local1');
fn_call();
// reorder fix cannot cross function call on moving below | ||
test(withoutAutofixOutput({ | ||
code: ` | ||
const local = require('./local'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AssertionError [ERR_ASSERTION] [ERR_ASSERTION]: Output is incorrect.
+ expected
- actual
+ const local = require('./local');
const global1 = require('global1');
const global2 = require('global2');
fn_call();
const global3 = require('global3');
- const local = require('./local');
fn_call();
const global1 = require('global1'); | ||
const global2 = require('global2'); | ||
fn_call(); | ||
const local2 = require('./local2'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AssertionError [ERR_ASSERTION] [ERR_ASSERTION]: Output is incorrect.
+ expected
- actual
+ const local1 = require('./local1');
const global1 = require('global1');
const global2 = require('global2');
fn_call();
- const local2 = require('./local2');
const global3 = require('global3');
const global4 = require('global4');
- const local1 = require('./local1');
+ const local2 = require('./local2');
fn_call();
code: ` | ||
const env = require('./config'); | ||
|
||
Object.keys(env); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AssertionError [ERR_ASSERTION] [ERR_ASSERTION]: Output is incorrect.
+ expected - actual
+ const env = require('./config');
Object.keys(env);
const http = require('http');
const express = require('express');
- const env = require('./config');
http.createServer(express());
e999209
to
e62011f
Compare
Closes #1252