Skip to content

Commit

Permalink
fix: test templates
Browse files Browse the repository at this point in the history
chore: bump version
chore: changelog
  • Loading branch information
krigga committed Dec 1, 2023
1 parent 7c84239 commit 4a132c8
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.14.1] - 2023-12-01

### Fixed

- Fixed test templates (added missing imports)

## [0.14.0] - 2023-11-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ton/blueprint",
"version": "0.14.0",
"version": "0.14.1",
"description": "Framework for development of TON smart contracts",
"main": "dist/index.js",
"bin": "./dist/cli/cli.js",
Expand Down
2 changes: 1 addition & 1 deletion src/templates/func/counter/tests/spec.ts.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{name}}.spec.ts
import { Blockchain, SandboxContract } from '@ton/sandbox';
import { Blockchain, SandboxContract, TreasuryContract } from '@ton/sandbox';
import { Cell, toNano } from '@ton/core';
import { {{name}} } from '../wrappers/{{name}}';
import '@ton/test-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/templates/func/empty/tests/spec.ts.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{name}}.spec.ts
import { Blockchain, SandboxContract } from '@ton/sandbox';
import { Blockchain, SandboxContract, TreasuryContract } from '@ton/sandbox';
import { Cell, toNano } from '@ton/core';
import { {{name}} } from '../wrappers/{{name}}';
import '@ton/test-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/templates/tact/counter/tests/spec.ts.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{name}}.spec.ts
import { Blockchain, SandboxContract } from '@ton/sandbox';
import { Blockchain, SandboxContract, TreasuryContract } from '@ton/sandbox';
import { toNano } from '@ton/core';
import { {{name}} } from '../wrappers/{{name}}';
import '@ton/test-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/templates/tact/empty/tests/spec.ts.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{name}}.spec.ts
import { Blockchain, SandboxContract } from '@ton/sandbox';
import { Blockchain, SandboxContract, TreasuryContract } from '@ton/sandbox';
import { toNano } from '@ton/core';
import { {{name}} } from '../wrappers/{{name}}';
import '@ton/test-utils';
Expand Down

0 comments on commit 4a132c8

Please sign in to comment.