-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
Copy pathno_export_all.test.js
70 lines (62 loc) · 1.79 KB
/
no_export_all.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
const Path = require('path');
const { RuleTester } = require('eslint');
const dedent = require('dedent');
const rule = require('./no_export_all');
const ruleTester = new RuleTester({
parser: require.resolve('@typescript-eslint/parser'),
parserOptions: {
sourceType: 'module',
ecmaVersion: 2018,
ecmaFeatures: {
jsx: true,
},
},
});
ruleTester.run('@kbn/eslint/no_export_all', rule, {
valid: [
{
code: dedent`
export { bar } from './foo';
export { bar as box } from './foo';
`,
},
],
invalid: [
{
filename: Path.resolve(__dirname, '../__fixtures__/index.ts'),
code: dedent`
export * as baz from './baz';
export * from './foo';
`,
errors: [
{
line: 1,
message:
'`export *` is not allowed in the index files of plugins to prevent accidentally exporting too many APIs',
},
{
line: 2,
message:
'`export *` is not allowed in the index files of plugins to prevent accidentally exporting too many APIs',
},
],
output: dedent`
import { one, two, three } from "./baz";
export const baz = {
one,
two,
three
};
export type { ReexportedClass, SomeInterface, TypeAlias } from "./foo";
export { someConst, someLet, someFunction, SomeClass, SomeEnum } from "./foo";
`,
},
],
});