-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: updated all dependencies (#1944)
- Loading branch information
1 parent
ca927be
commit 484ee47
Showing
101 changed files
with
17,475 additions
and
51,235 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 was deleted.
Oops, something went wrong.
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,26 @@ | ||
import "@angular/localize/init"; | ||
import * as buffer from "buffer"; | ||
import * as MockDate from "mockdate"; | ||
import { Preview } from "@storybook/angular"; | ||
import { environment } from "../src/environments/environment"; | ||
import { SessionType } from "../src/app/core/session/session-type"; | ||
|
||
// fixing a mocked "TODAY" to have persistent stories for visual regression testing | ||
MockDate.set(new Date("2023-06-09")); | ||
// polyfill buffer here as well | ||
window.Buffer = buffer.Buffer; | ||
environment.production = false; | ||
environment.session_type = SessionType.mock; | ||
environment.demo_mode = false; | ||
|
||
export const preview: Preview = { | ||
parameters: { | ||
actions: { argTypesRegex: "^on[A-Z].*" }, | ||
options: { | ||
storySort: { | ||
order: ["Core", "Features", "*"], | ||
method: "alphabetical", | ||
}, | ||
}, | ||
}, | ||
}; |
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,8 +1,8 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"include": ["**/*.ts"], | ||
"include": ["integration"], | ||
"compilerOptions": { | ||
"sourceMap": false, | ||
"types": ["cypress", "node"] | ||
"types": ["cypress"] | ||
} | ||
} |
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
Oops, something went wrong.