-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Export internal constructs for other plugin authors (#17)
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* @fileoverview Tests for the package index's exports. | ||
* @author Steve Dodier-Lazaro | ||
*/ | ||
|
||
//------------------------------------------------------------------------------ | ||
// Imports | ||
//------------------------------------------------------------------------------ | ||
|
||
import * as exports from "../../src/index.js"; | ||
import assert from "node:assert"; | ||
|
||
//------------------------------------------------------------------------------ | ||
// Tests | ||
//------------------------------------------------------------------------------ | ||
|
||
describe("Package exports", () => { | ||
it("has the ESLint plugin as a default export", () => { | ||
assert.deepStrictEqual(Object.keys(exports.default), [ | ||
"meta", | ||
"languages", | ||
"rules", | ||
"configs", | ||
]); | ||
}); | ||
|
||
it("has a JSONLanguage export", () => { | ||
assert.ok(exports.JSONLanguage); | ||
}); | ||
|
||
it("has a JSONSourceCode export", () => { | ||
assert.ok(exports.JSONSourceCode); | ||
}); | ||
}); |