build: update jasmine to 3.5 (#34625)
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
This commit is contained in:

committed by
Kara Erickson

parent
52ab9397a0
commit
b28a5f6eef
@ -683,8 +683,10 @@ const TEST_COMPILER_PROVIDERS: Provider[] = [
|
||||
fakeAsync(() => {
|
||||
const ctx = createCompFixture('<div testDirective [a]="42"></div>');
|
||||
const rf = TestBed.inject(RendererFactory2);
|
||||
spyOn(rf, 'begin');
|
||||
spyOn(rf, 'end');
|
||||
// TODO: @JiaLiPassion, need to wait @types/jasmine to fix the
|
||||
// optional method infer issue.
|
||||
spyOn(rf as any, 'begin');
|
||||
spyOn(rf as any, 'end');
|
||||
expect(rf.begin).not.toHaveBeenCalled();
|
||||
expect(rf.end).not.toHaveBeenCalled();
|
||||
|
||||
|
Reference in New Issue
Block a user