Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mikaello/pesy_test

A basic esy project started with pesy, using dependency @opam/levenshtein
https://github.com/mikaello/pesy_test

Last synced: 23 days ago
JSON representation

A basic esy project started with pesy, using dependency @opam/levenshtein

Awesome Lists containing this project

README

        

# pesy_test

[![CircleCI](https://circleci.com/gh/yourgithubhandle/pesy_test/tree/master.svg?style=svg)](https://circleci.com/gh/yourgithubhandle/pesy_test/tree/master)

**Contains the following libraries and executables:**

```
[email protected]

├─test/
│ name: TestPesyTest.exe
│ main: TestPesyTest
│ require: pesy_test.lib

├─library/
│ library name: pesy_test.lib
│ namespace: PesyTest
│ require:

└─executable/
name: PesyTestApp.exe
main: PesyTestApp
require: pesy_test.lib
```

## Developing:

```
npm install -g esy
git clone
esy install
esy build
```

## Running Binary:

After building the project, you can run the main binary that is produced.

```
esy x PesyTestApp.exe
```

## Running Tests:

```
# Runs the "test" command in `package.json`.
esy test
```