Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sprint 4 #2

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint && npm run test

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Отлично, что в pre-commit запускаются и тесты, и линтеры

10 changes: 10 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extension": ["ts"],
"loader": "ts-node/esm",
"spec": "src/**/*.spec.ts",
"require": ["./mochaSetup.js"],
"node-option": [
"experimental-specifier-resolution=node",
"loader=ts-node/esm"
]
}
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Онлайн мессенджер - это приложение, которое позволяет пользователям общаться в режиме онлайн, задавать вопросы и получать помощь от других пользователей. Онлайн мессенджер может быть полезен для тех, кто хочет общаться с друзьями и семьей в любое время, а также для тех, кто хочет получать помощь от опытных людей в области IT.

## Версия: 0.3 (добавлен роутер, внедрено HTTP API чатов, подключен WebSocket)
## Версия: 0.4 (добавлены тесты для роутера, компонента и модуля отправки запросов, настроен precommit, проведен аудит пакетов)

## Дезайн прототипа
Дезайн для версии 0.3 можно найти по ссылке:
Дезайн для версии 0.4 можно найти по ссылке:
Прототип на [Figma](https://www.figma.com/proto/PCWoIjBK1zEjnN4nkOJDx1/Messenger?page-id=0%3A1&type=design&node-id=1-797&viewport=60%2C176%2C0.19&t=lwHAE0Wwu2VjJ1O9-1&scaling=min-zoom&starting-point-node-id=1%3A797&mode=design).
Прототип на [Netlify](https://fancy-kelpie-740e6d.netlify.app)

Expand All @@ -27,6 +27,12 @@ npm run dev
npm run build
npm run preview
```

### Запуск тестов
```bash
npm run test
```

## Входная точка:

[http://localhost:3000/](http://localhost:3000/) или [https://fancy-kelpie-740e6d.netlify.app](https://fancy-kelpie-740e6d.netlify.app)
Expand Down
10 changes: 10 additions & 0 deletions mochaSetup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import {JSDOM} from 'jsdom';
import constants from './src/constants'

// jsdom
const jsdom = new JSDOM('<body><div id="app"></div></body>',{ url: 'http://localhost/' });

global.window = jsdom.window;
global.document = jsdom.window.document;
global.Node = jsdom.window.Node;
global.MouseEvent = jsdom.window.MouseEvent;
Loading
Loading