-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Possibility to init with a single Module (#408)
- Loading branch information
1 parent
aa0856b
commit 5e1ecb7
Showing
20 changed files
with
2,937 additions
and
4,887 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
Binary file modified
BIN
+0 Bytes
(100%)
...apshots/app/image-snapshot/image-snapshot.component.cy-spec.ts/clicked.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
.../snapshots/app/image-snapshot/image-snapshot.component.cy-spec.ts/init.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,46 +1,43 @@ | ||
export class StyleOptions { | ||
|
||
/** | ||
* Creates <link href="..." /> element for each stylesheet | ||
* @alias stylesheet | ||
*/ | ||
stylesheets?: string[]; | ||
|
||
/** | ||
* Creates <link href="..." /> element for each stylesheet | ||
* @alias stylesheets | ||
*/ | ||
stylesheet?: string; | ||
|
||
/** | ||
* Creates <style>...</style> element and inserts given CSS. | ||
* @alias styles | ||
*/ | ||
style?: string; | ||
|
||
/** | ||
* Creates <style>...</style> element for each given CSS text. | ||
* @alias style | ||
*/ | ||
styles?: string[]; | ||
|
||
/** | ||
* Loads each file and creates a <style>...</style> element | ||
* with the loaded CSS | ||
* @alias cssFile | ||
*/ | ||
cssFiles?: string[]; | ||
|
||
/** | ||
* Single CSS file to load into a <style></style> element | ||
* @alias cssFile | ||
*/ | ||
cssFile?: string; | ||
|
||
/** | ||
* Creates <link href="..." /> element for each stylesheet | ||
* @alias stylesheet | ||
*/ | ||
stylesheets?: string[]; | ||
|
||
/** | ||
* Creates <link href="..." /> element for each stylesheet | ||
* @alias stylesheets | ||
*/ | ||
stylesheet?: string; | ||
|
||
/** | ||
* Creates <style>...</style> element and inserts given CSS. | ||
* @alias styles | ||
*/ | ||
style?: string; | ||
|
||
/** | ||
* Creates <style>...</style> element for each given CSS text. | ||
* @alias style | ||
*/ | ||
styles?: string[]; | ||
|
||
/** | ||
* Loads each file and creates a <style>...</style> element | ||
* with the loaded CSS | ||
* @alias cssFile | ||
*/ | ||
cssFiles?: string[]; | ||
|
||
/** | ||
* Single CSS file to load into a <style></style> element | ||
* @alias cssFile | ||
*/ | ||
cssFile?: string; | ||
} | ||
export class CypressAngularConfig extends StyleOptions { | ||
detectChanges? = true; | ||
|
||
detectChanges?= true; | ||
|
||
log?= false; | ||
} | ||
log? = false; | ||
} |
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.