Skip to content

Commit

Permalink
Changed 'describe.only' to 'describe' in script.spec.ts to allow all …
Browse files Browse the repository at this point in the history
…tests to run
  • Loading branch information
Randy808 committed Mar 11, 2024
1 parent 8e265b9 commit cae7e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/script.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as assert from 'assert';
import { describe, it } from 'mocha';
import { script } from '../ts_src';

describe.only('script', () => {
describe('script', () => {
describe('toASM', () => {
it('converts OP_CHECKLOCKTIMEVERIFY correctly', () => {
const asm = 'OP_CHECKLOCKTIMEVERIFY';
Expand Down

0 comments on commit cae7e71

Please sign in to comment.