[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -182,7 +182,7 @@ describe('ContextMenuHolderComponent', () => {
});
}));
it('should ajust position relative to right margin of the screen', fakeAsync(() => {
it('should adjust position relative to right margin of the screen', fakeAsync(() => {
const contextMenuEvent = {
clientX: 1000,
clientY: 210
@@ -197,7 +197,7 @@ describe('ContextMenuHolderComponent', () => {
});
}));
it('should ajust position relative to bottom margin of the screen', fakeAsync(() => {
it('should adjust position relative to bottom margin of the screen', fakeAsync(() => {
const contextMenuEvent = {
clientX: 100,
clientY: 600
@@ -212,7 +212,7 @@ describe('ContextMenuHolderComponent', () => {
});
}));
it('should ajust position relative to bottom - right margin of the screen', fakeAsync(() => {
it('should adjust position relative to bottom - right margin of the screen', fakeAsync(() => {
const contextMenuEvent = {
clientX: 900,
clientY: 610
@@ -248,7 +248,7 @@ describe('ContextMenuHolderComponent', () => {
expect(component.menuTrigger.menu.yPosition).toBe('below');
}));
it('should ajust direction relative to right margin of the screen', fakeAsync(() => {
it('should adjust direction relative to right margin of the screen', fakeAsync(() => {
const contextMenuEvent = {
clientX: 1000,
clientY: 210
@@ -261,7 +261,7 @@ describe('ContextMenuHolderComponent', () => {
expect(component.menuTrigger.menu.yPosition).toBe('below');
}));
it('should ajust direction relative to bottom margin of the screen', fakeAsync(() => {
it('should adjust direction relative to bottom margin of the screen', fakeAsync(() => {
const contextMenuEvent = {
clientX: 100,
clientY: 600
@@ -274,7 +274,7 @@ describe('ContextMenuHolderComponent', () => {
expect(component.menuTrigger.menu.yPosition).toBe('above');
}));
it('should ajust position relative to bottom - right margin of the screen', fakeAsync(() => {
it('should adjust position relative to bottom - right margin of the screen', fakeAsync(() => {
const contextMenuEvent = {
clientX: 900,
clientY: 610