Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ This will add the deno types to the project.
## Running the tests

```bash
$ deno test
$ deno task test
```

You can add a file to test only that one file.

```bash
$ deno test mod_test.ts
$ deno test --frozen mod_test.ts
```

### Coding style and tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ts_serialize_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
deno-version: ${{ matrix.deno }}

- name: Deno test
run: deno test
run: deno test --no-lock

deno_v2_and_up:
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion _build_npm.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --allow-env --allow-read --allow-write --allow-run=npm --allow-net=jsr.io
#!/usr/bin/env -S deno run --allow-env --allow-read --allow-write --allow-run=npm --allow-net=jsr.io --frozen
// Copyright 2018-2025 Gamebridge.ai authors. All rights reserved. MIT license.

import { build, emptyDir } from "@deno/dnt";
Expand Down
12 changes: 6 additions & 6 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.42.1",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/cli": "jsr:@std/cli@^1.0.17"
"@deno/dnt": "jsr:@deno/[email protected].3",
"@std/assert": "jsr:@std/[email protected].14",
"@std/cli": "jsr:@std/[email protected].22"
},
"lock": false,
"lock": true,
"compilerOptions": {
"experimentalDecorators": true
},
Expand Down Expand Up @@ -39,11 +39,11 @@
},
"test": {
"description": "Run tests",
"command": "deno test --doc"
"command": "deno test --doc --frozen"
},
"test:coverage": {
"description": "Run tests with coverage",
"command": "deno test --coverage=coverage --doc"
"command": "deno test --coverage=coverage --doc --frozen"
},
"test:coverage:report": {
"description": "Generate coverage report",
Expand Down
80 changes: 80 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading