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

NAS-131552 / 25.04 / Fixing docker build #10795

Merged
merged 1 commit into from
Oct 3, 2024
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##NODE temporary builder image
from node:20-alpine as uibuilder
from node:20-bookworm as uibuilder
COPY ./ /src-ui
WORKDIR /src-ui
RUN yarn install --frozen-lockfile

Unchanged files with check annotations Beta

});
// TODO: Broken after package update. Actually functionality is working.
it.skip('inserts a suggestion when Enter is pressed', async () => {

Check warning on line 225 in src/app/modules/forms/search-input/components/advanced-search/tests/autocomplete.spec.ts

GitHub Actions / Validate code style

Disabled test
await searchHarness.setValue('User');
await (await searchHarness.getInputArea()).sendKeys(TestKey.ENTER);
});
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
it.skip('shows a list of previous versions for an installed app to roll back to', async () => {

Check warning on line 51 in src/app/pages/apps/components/installed-apps/app-rollback-modal/app-rollback-modal.component.spec.ts

GitHub Actions / Validate code style

Disabled test
const versionSelect = await loader.getHarness(IxSelectHarness);
const options = await versionSelect.getOptionLabels();
});
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
it.skip('rolls back app when form is submitted', async () => {

Check warning on line 59 in src/app/pages/apps/components/installed-apps/app-rollback-modal/app-rollback-modal.component.spec.ts

GitHub Actions / Validate code style

Disabled test
const form = await loader.getHarness(IxFormHarness);
await form.fillForm({
Version: '0.9.8',
expect(spectator.query('span')).toHaveText('Deploying');
});
it.skip('checks state for stopping app', () => {

Check warning on line 45 in src/app/pages/apps/components/installed-apps/app-state-cell/app-state-cell.component.spec.ts

GitHub Actions / Validate code style

Disabled test
setupTest(
{ state: AppState.Running } as App,
);
import { ShellDetailsType } from 'app/pages/apps/enum/shell-details-type.enum';
// TODO:
describe.skip('ShellDetailsDialogComponent', () => {

Check warning on line 14 in src/app/pages/apps/components/shell-details-dialog/shell-details-dialog.component.spec.ts

GitHub Actions / Validate code style

Disabled test suite
let spectator: Spectator<ShellDetailsDialogComponent>;
let loader: HarnessLoader;
let form: IxFormHarness;