/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/core/test/render3/testing_spec.ts
58 строк
1 KB
Joey Perrott
refactor: update license text to point to angular.dev (#57901)
24 сен 2024, 16:33
24 сен 2024, 16:33
9dbe6fc
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {withBody} from '@angular/private/testing'; describe('testing', () => { describe('withBody', () => { let passed: boolean; beforeEach(() => (passed = false)); afterEach(() => expect(passed).toEqual(true)); it( 'should set up body', withBody('<span>works!</span>', () => { expect(document.body.innerHTML).toEqual('<span>works!</span>'); passed = true; }), ); it( 'should support promises', withBody('<span>works!</span>', () => { return Promise.resolve(true).then(() => { passed = true; }); }), ); it( 'should support async and await', withBody('<span>works!</span>', async () => { await Promise.resolve(true); passed = true; }), ); }); describe('domino', () => { it('should have document present', () => { // In Browser this tests passes, bun we also want to make sure we pass in node.js // We expect that node.js will load domino for us. expect(document).toBeTruthy(); }); }); describe('requestAnimationFrame', () => { it('should have requestAnimationFrame', (done) => { // In Browser we have requestAnimationFrame, but verify that we also have it node.js requestAnimationFrame(() => done()); }); }); });