Skip to content

Commit 6a032bf

Browse files
committed
fix: update README for clarity and move test files for better organisation
1 parent ae610f3 commit 6a032bf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# node-cache-plus
22

3-
`node-cache-plus` is a wrapper around the popular library [`node-cache`](https://github.com/node-cache/node-cache/tree/master) with additional features such tag-based invalidation, factory functions, and other helpers for in-memory caching in Node.js applications.
3+
`node-cache-plus` is a wrapper around the popular library [`node-cache`](https://github.com/node-cache/node-cache/tree/master) with additional features such as tag-based invalidation, factory functions, and other helpers for in-memory caching in Node.js applications.
44

55
## Installation
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { beforeEach, describe, expect, it } from "vitest";
2-
import { Cache } from "./Cache";
2+
import { Cache } from "../Cache";
33

44
describe("Cache", () => {
55
let cache: Cache;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, it } from "vitest";
2-
import { cachedCall, withCache } from "./helpers";
2+
import { cachedCall, withCache } from "../helpers";
33

44
// A mock function that simulates an expensive async operation
55
async function expensiveFunction(param: string): Promise<string> {

0 commit comments

Comments
 (0)