Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH Auto: Upstream dependencies ADF:7.0.0-alpha.2-11070706321 JS-API:8.0.0-alpha.2-11070706321 using Tag:7.0.0-alpha.2-11070706321 #4144

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading