Skip to content

Commit

Permalink
publish in matteo org
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <[email protected]>
  • Loading branch information
mcollina committed Jul 21, 2023
1 parent b5a73b7 commit 0022f30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ or the test plan was not completed.
## Install

```bash
npm i tspl
npm i @matteo.collina/tspl
```

(You'll also need `@types/node`)
Expand All @@ -17,7 +17,7 @@ npm i tspl

```js
import test from 'node:test'
import { tspl, Plan } from 'tspl'
import { tspl, Plan } from '@matteo.collina/tspl'

test('tspl', (t) => {
const { strictEqual } = tspl(t, { plan: 1 })
Expand All @@ -29,7 +29,7 @@ test('tspl', (t) => {

```typescript
import test from 'node:test';
import { tspl, Plan } from 'tspl';
import { tspl, Plan } from '@matteo.collina/tspl';

test('tspl', (t) => {
const p: Plan = tspl(t, { plan: 1 });
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "tspl",
"name": "@matteo.collina/tspl",
"version": "0.1.0",
"description": "Count the number of assertions for node:test",
"main": "tspl.js",
Expand Down

0 comments on commit 0022f30

Please sign in to comment.