-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Explicitly export stopDataFactory (#2754)
- Loading branch information
1 parent
5eb0fa2
commit 5fad372
Showing
5 changed files
with
5 additions
and
7 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
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 |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import { Factory } from "fishery" | ||
import { StopData } from "../../src/models/stopData" | ||
|
||
const stopDataFactory = Factory.define<StopData>(({ sequence }) => ({ | ||
export const stopDataFactory = Factory.define<StopData>(({ sequence }) => ({ | ||
id: `stop${sequence}`, | ||
name: `Some Stop - ${sequence}`, | ||
location_type: "stop", | ||
lat: 0, | ||
lon: 0, | ||
routes: [], | ||
})) | ||
|
||
export default stopDataFactory |
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