🔨 test with FirefoxHeadless for gitlab CI

This commit is contained in:
Baptiste Lemoine 2020-02-10 10:47:54 +01:00
parent 1816150c6d
commit e089d19993
2 changed files with 3 additions and 3 deletions

View File

@ -33,8 +33,8 @@ module.exports = function (config) {
colors : true,
logLevel : config.LOG_INFO,
autoWatch : true,
browsers : ['Firefox'],
singleRun : false,
browsers : ['FirefoxHeadless'],
singleRun : true,
restartOnFileChange : true,
});
};

View File

@ -12,7 +12,7 @@ import {mockPoll3} from "../../../config/mocks/mock-poll3";
const routerSpy = jasmine.createSpyObj('Router', ['navigateByUrl']);
fdescribe('VotingChoiceComponent', () => {
describe('VotingChoiceComponent', () => {
let component: VotingChoiceComponent;
let fixture: ComponentFixture<VotingChoiceComponent>;