Rename TSInjex to TSinjex and Add Jest Setup in README

Renamed all instances of 'TSInjex' to 'TSinjex' for consistency across the codebase, including interfaces, classes, and test files. Updated the version in `package.json` from 0.0.5 to 0.0.6. Added Jest setup example to the `README.md` to guide developers on initial configuration for testing.
This commit is contained in:
2024-08-14 23:10:44 +02:00
parent ad4a8fd8c6
commit 771b810419
13 changed files with 222 additions and 200 deletions

View File

@@ -1,11 +1,11 @@
import { ITSInjex } from './ITSInjex';
import { ITSinjex } from './ITSinjex';
/**
* General error class for {@link ITSInjex} interface.
* General error class for {@link ITSinjex} interface.
*/
export class TSInjexError extends Error {
export class TSinjexError extends Error {
/**
* Creates a new instance of {@link TSInjexError}
* Creates a new instance of {@link TSinjexError}
* @param message **The error message**
*/
constructor(message: string) {
@@ -15,10 +15,10 @@ export class TSInjexError extends Error {
}
/**
* Error class for dependency resolution errors in {@link ITSInjex}.
* @see {@link ITSInjex.resolve}
* Error class for dependency resolution errors in {@link ITSinjex}.
* @see {@link ITSinjex.resolve}
*/
export class DependencyResolutionError extends TSInjexError {
export class DependencyResolutionError extends TSinjexError {
/**
* Creates a new instance of {@link DependencyResolutionError}
* @param identifier **The identifier of the dependency**