-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from TAServers/LEST-NONE-improve-docs-exports
LEST-NONE - Improve docs exports
- Loading branch information
Showing
9 changed files
with
82 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export { default as afterAll } from "./afterAll.json"; | ||
export { default as afterEach } from "./afterEach.json"; | ||
export { default as beforeAll } from "./beforeAll.json"; | ||
export { default as beforeEach } from "./beforeEach.json"; | ||
export { default as describe } from "./describe.json"; | ||
export { default as describeEach } from "./describe-each.json"; | ||
export { default as expect } from "./expect.json"; | ||
export { default as lestFn } from "./fn.json"; | ||
export { default as test } from "./test.json"; | ||
export { default as testEach } from "./test-each.json"; |
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,3 @@ | ||
export * from "./functions"; | ||
export * from "./matchers"; | ||
export * from "./types"; |
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 @@ | ||
export * from "./symmetric"; |
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,30 @@ | ||
export { default as toBe } from "./toBe.json"; | ||
export { default as toBeCloseTo } from "./toBeCloseTo.json"; | ||
export { default as toBeDefined } from "./toBeDefined.json"; | ||
export { default as toBeFalsy } from "./toBeFalsy.json"; | ||
export { default as toBeGreaterThan } from "./toBeGreaterThan.json"; | ||
export { default as toBeGreaterThanOrEqual } from "./toBeGreaterThanOrEqual.json"; | ||
export { default as toBeInfinity } from "./toBeInfinity.json"; | ||
export { default as toBeInstanceOf } from "./toBeInstanceOf.json"; | ||
export { default as toBeLessThan } from "./toBeLessThan.json"; | ||
export { default as toBeLessThanOrEqual } from "./toBeLessThanOrEqual.json"; | ||
export { default as toBeNaN } from "./toBeNaN.json"; | ||
export { default as toBeTruthy } from "./toBeTruthy.json"; | ||
export { default as toBeUndefined } from "./toBeUndefined.json"; | ||
export { default as toContain } from "./toContain.json"; | ||
export { default as toContainEqual } from "./toContainEqual.json"; | ||
export { default as toEqual } from "./toEqual.json"; | ||
export { default as toHaveBeenCalled } from "./toHaveBeenCalled.json"; | ||
export { default as toHaveBeenCalledTimes } from "./toHaveBeenCalledTimes.json"; | ||
export { default as toHaveBeenCalledWith } from "./toHaveBeenCalledWith.json"; | ||
export { default as toHaveBeenLastCalledWith } from "./toHaveBeenLastCalledWith.json"; | ||
export { default as toHaveBeenNthCalledWith } from "./toHaveBeenNthCalledWith.json"; | ||
export { default as toHaveReturned } from "./toHaveReturned.json"; | ||
export { default as toHaveReturnedTimes } from "./toHaveReturnedTimes.json"; | ||
export { default as toHaveReturnedWith } from "./toHaveReturnedWith.json"; | ||
export { default as toHaveLastReturnedWith } from "./toHaveLastReturnedWith.json"; | ||
export { default as toHaveNthReturnedWith } from "./toHaveNthReturnedWith.json"; | ||
export { default as toHaveLength } from "./toHaveLength.json"; | ||
export { default as toMatch } from "./toMatch.json"; | ||
export { default as toMatchObject } from "./toMatchObject.json"; | ||
export { default as toThrow } from "./toThrow.json"; |
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,2 @@ | ||
export { default as mock } from "./mock.json"; | ||
export { default as mockResult } from "./mock-result.json"; |
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
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