diff --git a/tests/src/rules/first.js b/tests/src/rules/first.js index 55367cf43c..8c5d72a34c 100644 --- a/tests/src/rules/first.js +++ b/tests/src/rules/first.js @@ -11,6 +11,9 @@ ruleTester.run('first', rule, { export { x, y }" }) , test({ code: "import { x } from 'foo'; import { y } from './bar'" }) , test({ code: "import { x } from './foo'; import { y } from 'bar'" }) + , test({ code: "import { x } from './foo'; import { y } from 'bar'" + , options: ['disable-absolute-first'], + }) , test({ code: "'use directive';\ import { x } from 'foo';" }) ,