mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
1. update jasmine to 3.5 2. update @types/jasmine to 3.5 3. update @types/jasminewd2 to 2.0.8 Also fix several cases, the new jasmine 3 will help to create test cases correctly, such as in the `jasmine 2.x` version, the following case will pass ``` expect(1 == 2); ``` But in jsamine 3, the case will need to be ``` expect(1 == 2).toBeTrue(); ``` PR Close #34625 |
||
|---|---|---|
| .. | ||
| console.spec.ts | ||
| crypto.spec.ts | ||
| Error.spec.ts | ||
| events.spec.ts | ||
| fs.spec.ts | ||
| http.spec.ts | ||
| process.spec.ts | ||
| timer.spec.ts | ||