Skip to content

Commit 16c9b14

Browse files
committed
fix: fix tests and commit message to follow guidelines
1 parent 36cefcf commit 16c9b14

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.github/workflows/nightly-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ jobs:
123123
with:
124124
author_name: Leonidas
125125
author_email: [email protected]
126-
message: 'nightly release ${{steps.datetime.outputs.release_date}} ⚡'
126+
message: 'chore: nightly release ${{steps.datetime.outputs.release_date}} ⚡'
127127
- name: Release
128128
run: pnpm run release

libs/tools/src/executors/release/build-update-publish/executor.spec.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as childProcess from 'node:child_process';
22
import * as projectHelper from '../helpers/projects.helpers';
33
import * as npmPublish from '../npm-publish/executor';
4-
import * as updateVersion from '../update-version/executor';
54
import executor from './executor';
65

76
// Mock the entire child_process module
@@ -15,7 +14,7 @@ describe('BuildUpdatePublish Executor', () => {
1514
// eslint-disable-next-line @typescript-eslint/no-explicit-any
1615
const mockContext = { bar: 'bar' } as any;
1716

18-
// Mock the project helper, updateVersion, npmPublish, and execSync
17+
// Mock the project helper, npmPublish, and execSync
1918
jest.spyOn(projectHelper, 'getProjectName').mockReturnValue(libName);
2019

2120
// Mock npmPublish to return { success: true }
@@ -28,7 +27,6 @@ describe('BuildUpdatePublish Executor', () => {
2827
const output = await executor({}, mockContext);
2928

3029
// Verify that all functions are called as expected
31-
expect(updateVersion.default).toHaveBeenCalledWith({}, mockContext);
3230
expect(npmPublish.default).toHaveBeenCalledWith({}, mockContext);
3331
expect(execSyncMock).toHaveBeenCalledWith(expectedCommand);
3432
expect(output.success).toBe(true);

libs/tools/src/generators/replace-cli-version/generator.spec.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
import { type Tree, readProjectConfiguration } from '@nx/devkit';
22
import { createTreeWithEmptyWorkspace } from '@nx/devkit/testing';
33

4-
import { replaceCliVersionGenerator } from './generator';
5-
import type { ReplaceCliVersionGeneratorSchema } from './schema';
4+
import replaceCliVersionGenerator from './generator';
65

76
describe('replace-cli-version generator', () => {
87
let tree: Tree;
9-
const options: ReplaceCliVersionGeneratorSchema = {};
108

119
beforeEach(() => {
1210
tree = createTreeWithEmptyWorkspace();
1311
});
1412

1513
it.skip('should run successfully', async () => {
16-
await replaceCliVersionGenerator(tree, options);
14+
await replaceCliVersionGenerator(tree);
1715
const config = readProjectConfiguration(tree, 'test');
1816
expect(config).toBeDefined();
1917
});

libs/tools/src/generators/replace-ui-version/generator.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const replaceUiVersionInCliVersionsFile = (tree: Tree, oldVersion: string, newVe
4646
tree.write(filePath, contents);
4747
};
4848

49-
export default async function replaceUiVersionGenerator(tree: Tree, options: { newVersion: string }): Promise<void> {
49+
export default async function replaceUiVersionGenerator(tree: Tree, options?: { newVersion: string }): Promise<void> {
5050
const relativePackageJsonFilePaths = [
5151
...(await recursivelyFindRelativePackageJsonFilePaths('libs/ui')),
5252
// this is going to be our main package going forward which contains all primitives as secondary entry points
@@ -56,7 +56,7 @@ export default async function replaceUiVersionGenerator(tree: Tree, options: { n
5656
// this goes into the accordion's package.json, which should always be defined
5757
// if there is no version there we should definitely not move forward
5858
const oldVersion = readJsonFile(relativePackageJsonFilePaths[0]).version;
59-
const newVersion = options.newVersion ?? process.env.VERSION;
59+
const newVersion = options?.newVersion ?? process.env.VERSION;
6060

6161
if (!oldVersion) {
6262
console.error(

0 commit comments

Comments
 (0)