Real unit test (isolation, no children render)
Calls:
- constructor
- render
| import { | |
| NestInterceptor, | |
| ExecutionContext, | |
| Injectable, | |
| CallHandler, | |
| } from '@nestjs/common'; | |
| import { classToPlain } from 'class-transformer'; | |
| import { map } from 'rxjs/operators'; | |
| @Injectable() |
| From >>https://forums.meteor.com/t/how-to-config-meteor-command-in-git-bash-on-window-7/9703 | |
| Q: I can't use meteor command in git bash on window 7 | |
| A: $ meteor --version | |
| bash: meteor: command not found | |
| I try to add environment path ->;C:\Users\Rabbit\AppData\Local\.meteor. | |
| But still don't work. | |
| Go to this directory - C:\Users[your username]\AppData\Local\.meteor |
| .fileContainer { | |
| overflow: hidden; | |
| position: relative; | |
| } | |
| .fileContainer [type=file] { | |
| cursor: inherit; | |
| display: block; | |
| font-size: 999px; | |
| filter: alpha(opacity=0); |
| function mkcd(){ | |
| mkdir $1; | |
| cd $1; | |
| } | |
| # Apt | |
| alias apti='sudo apt-get install' | |
| alias apts='sudo apt-cache search' | |
| alias aptp='sudo apt-get --purge remove' | |
| alias aptr='sudo apt-get remove' |