Skip to content

Commit 5fd4e97

Browse files
committed
fix: fixed namings
1 parent 86406e2 commit 5fd4e97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@shelf/postgres-local",
3-
"version": "0.1.6",
4-
"description": "Run 14 version of Postgres locally",
3+
"version": "1.0.0",
4+
"description": "Run Postgres locally",
55
"keywords": [
66
"postgres",
77
"postgres local"

src/index.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import postgres from 'postgres';
44
import {start, stop} from '.';
55

66
describe('#postgres', () => {
7-
it('should start postgres@14 locally', async () => {
7+
it('should start postgres locally', async () => {
88
expect.assertions(2);
99

1010
const returnedUrl = await start({
@@ -56,7 +56,7 @@ describe('#postgres', () => {
5656
expect(returnedUrl).toEqual('postgres://localhost:5555/postgres');
5757
});
5858

59-
it('should stop postgres@14 locally', async () => {
59+
it('should stop postgres locally', async () => {
6060
await stop({
6161
version: 12,
6262
});

0 commit comments

Comments
 (0)