diff --git a/README.md b/README.md index e69de29..5145309 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,12 @@ + +## Today I Learned + +I was originally going to write these in markdown but then I found emacs has keybindings for HTML tags when the major mode is HTML. + +This repo was inspired by: + +[1] https://github.com/jbranchaud/til + +found via: + +[2] https://news.ycombinator.com/item?id=38171589 \ No newline at end of file diff --git a/angular/20231113_skip_tests.html b/angular/20231113_skip_tests.html new file mode 100644 index 0000000..6d5a2d9 --- /dev/null +++ b/angular/20231113_skip_tests.html @@ -0,0 +1,18 @@ + +

Skip Tests When Generating Components

+ +

+For what ever reason I have a mental block about remembering the flag to keep +angular from generating the spec file. Therefore, in an attempt to help me +remember I'm adding it here. Hopefully the act of writing it down will help. +

+ + +ng g c some_folder/somefile --skip-tests=true + + +or without the "=" + + +ng g c some_folder/somefile --skip-tests true +