app.e2e-spec.ts 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import { browser, logging } from 'protractor';
  17. import { AppPage } from './app.po';
  18. describe('workspace-project App', () => {
  19. let page: AppPage;
  20. beforeEach(() => {
  21. page = new AppPage();
  22. });
  23. it('should display welcome message', () => {
  24. page.navigateTo();
  25. expect(page.getTitleText()).toEqual('Welcome to ng8!');
  26. });
  27. afterEach(async () => {
  28. // Assert that there are no errors emitted from the browser
  29. const logs = await browser
  30. .manage()
  31. .logs()
  32. .get(logging.Type.BROWSER);
  33. expect(logs).not.toContain(
  34. jasmine.objectContaining({
  35. level: logging.Level.SEVERE,
  36. } as logging.Entry),
  37. );
  38. });
  39. });