-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Paco Aranda <[email protected]> Co-authored-by: Leire Aguirre <[email protected]>
- Loading branch information
1 parent
c9f2493
commit b4e8bad
Showing
13 changed files
with
424 additions
and
87 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
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
20 changes: 20 additions & 0 deletions
20
argilla-frontend/v1/domain/entities/__mocks__/dataset/mocks.ts
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,20 @@ | ||
import { Dataset } from "../../dataset/Dataset"; | ||
|
||
export const createEmptyDataset = () => { | ||
return new Dataset( | ||
"FAKE_ID", | ||
"FAKE_NAME", | ||
"FAKE_GUIDELINES", | ||
"ready", | ||
"FAKE_WORKSPACE_ID", | ||
"FAKE_WORKSPACE_NAME", | ||
false, | ||
{ | ||
strategy: "FAKE", | ||
minSubmitted: 1, | ||
}, | ||
"", | ||
"", | ||
"" | ||
); | ||
}; |
Oops, something went wrong.