Skip to content

Commit

Permalink
Merge pull request #2 from JooLuiz/fix/adjusting-jest-config-file
Browse files Browse the repository at this point in the history
[fix] - Adjusting jest config file
  • Loading branch information
JooLuiz authored Jul 5, 2024
2 parents 868b219 + f0d4f75 commit 1ddca23
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - yyyy-mm-dd

## [0.1.2] - 2024-07-05

### Fixed

- Adjusting jest config file

## [0.1.1] - 2024-07-05

### Added

Expand Down
1 change: 0 additions & 1 deletion jest.config.js → jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable no-undef */
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simpler-server",
"version": "0.1.1",
"version": "0.1.2",
"description": "Simpler is a simple Node.js server, designed to rapidly provide a base to start your server projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -10,7 +10,7 @@
"start": "node dist/dev.js",
"dev": "ts-node-dev --respawn --transpile-only src/dev.ts",
"lint": "eslint . --ext .ts",
"test": "jest --config jest.config.js"
"test": "jest --config jest.config.ts"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 1ddca23

Please sign in to comment.