Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eclipse-theia/theia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f7919d818f3c4f9fd588adaa9f0ad9bee2cb1324
Choose a base ref
..
head repository: eclipse-theia/theia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2e51deafd39fc0d7016ecaffc77606c7320b7b7b
Choose a head ref
Original file line number Diff line number Diff line change
@@ -22,12 +22,12 @@ import { FrontendApplicationConfigProvider } from './frontend-application-config

disableJSDOM();

describe('FrontendApplicationConfigProvider', function () {
describe('FrontendApplicationConfigProvider', function (): void {

before(() => disableJSDOM = enableJSDOM());
after(() => disableJSDOM());

it('set should use defaults', function () {
it('set should use defaults', function (): void {
FrontendApplicationConfigProvider.set({
applicationName: 'test', // default is Eclipse Theia
electron: {
Original file line number Diff line number Diff line change
@@ -18,8 +18,8 @@ import { BackendApplicationConfigProvider } from './backend-application-config-p

import { expect } from 'chai';

describe('BackendApplicationConfigProvider', function () {
it('set should use defaults', function () {
describe('BackendApplicationConfigProvider', function (): void {
it('set should use defaults', function (): void {
BackendApplicationConfigProvider.set({});
const config = BackendApplicationConfigProvider.get();
expect(config.singleInstance).equal(false);