BorntraegerMarc/ledison-web

View on GitHub
src/components/application/application-test.js

Summary

Maintainability
A
0 mins
Test Coverage
describe('Application Component', () => {
    beforeEach(() => {
        browser.get(browser.baseUrl);
    });

    it('should pass the dummy test to verify the protractor setup', () => {
        expect(true).toBe(true);
    });
});