Skip to content

Commit

Permalink
GH Auto: Upstream dependencies ADF:7.0.0-alpha.2-11070706321 JS-API:8…
Browse files Browse the repository at this point in the history
….0.0-alpha.2-11070706321 using Tag:7.0.0-alpha.2-11070706321 (#4144)

* [ci:force][auto-commit] Update dependencies ADF:7.0.0-alpha.2-11070706321  JS:8.0.0-alpha.2-11070706321

* fix test

---------

Co-authored-by: nikita-web-ua <[email protected]>
Co-authored-by: Mykyta Maliarchuk <[email protected]>
  • Loading branch information
3 people authored Sep 27, 2024
1 parent 8b0cd8a commit 2c347ea
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 38 deletions.
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
},
"private": true,
"dependencies": {
"@alfresco/adf-content-services": "7.0.0-alpha.2-11066801004",
"@alfresco/adf-core": "7.0.0-alpha.2-11066801004",
"@alfresco/adf-extensions": "7.0.0-alpha.2-11066801004",
"@alfresco/eslint-plugin-eslint-angular": "7.0.0-alpha.2-11066801004",
"@alfresco/js-api": "8.0.0-alpha.2-11066801004",
"@alfresco/adf-content-services": "7.0.0-alpha.2-11070706321",
"@alfresco/adf-core": "7.0.0-alpha.2-11070706321",
"@alfresco/adf-extensions": "7.0.0-alpha.2-11070706321",
"@alfresco/eslint-plugin-eslint-angular": "7.0.0-alpha.2-11070706321",
"@alfresco/js-api": "8.0.0-alpha.2-11070706321",
"@angular/animations": "15.2.10",
"@angular/cdk": "15.2.9",
"@angular/common": "15.2.10",
Expand Down Expand Up @@ -62,7 +62,7 @@
"zone.js": "0.11.8"
},
"devDependencies": {
"@alfresco/adf-cli": "7.0.0-alpha.2-11066801004",
"@alfresco/adf-cli": "7.0.0-alpha.2-11070706321",
"@angular-devkit/build-angular": "15.2.10",
"@angular-devkit/core": "15.2.10",
"@angular-devkit/schematics": "15.2.10",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe('RuleActionUiComponent', () => {
loader = TestbedHarnessEnvironment.loader(fixture);
});

it('should clear empty parameters', async () => {
it('should not accept empty parameters', async () => {
component.actionDefinitions = actionsTransformedListMock;
component.parameterConstraints = dummyConstraints;
fixture.detectChanges();
Expand All @@ -87,7 +87,7 @@ describe('RuleActionUiComponent', () => {
setInputValue('');
await fixture.whenStable();

expect(component.parameters).toEqual({ 'mock-action-parameter-boolean': false });
expect(component.parameters).toEqual({ 'mock-action-parameter-boolean': false, 'mock-action-parameter-text': 'test' });
});

it('should populate the dropdown selector with the action definitions', async () => {
Expand Down

0 comments on commit 2c347ea

Please sign in to comment.