mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
committed by
Eugenio Romano
parent
53d96679ea
commit
e39a2b149b
@@ -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
|
||||
|
Reference in New Issue
Block a user