npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mocha-suit-ts

v0.3.0

Published

TypeScript wrapper for MochaSuit package

Downloads

8

Readme

MochaSuit for TypeScript

MochaSuit for TS - is a wrapper for widely spread testing framework - Mocha, which utilizes all benefits of OOP and static typing provided by TypeScript.

How it works

Instead of reading long explanations just look at this code:

import { Suit, before, it, after } from "mocha-suit-ts";
const Request = require('request');
const expect = require("expect.js");

@Suit("Checking HTTP status code")
class GetRequestCheck {
    statusCode: number;

    @before()
    sendRequestToServer(done) {        
        Request("https://www.google.com",(error, response) => {
            this.statusCode = response && response.statusCode;
            done();
        })
    }    

    @it("status code should be 200")
    checkStatusCode() {
        expect(this.statusCode).to.be(200);
    }   
    
    @after()
    sayByeBye() {
        // "Google is up!" =)
    }
}

new GetRequestCheck();

Equivalent Mocha code for this example:

const Request = require('request');
const expect = require("expect.js");

describe("Checking HTTP status code",function() {
    before("GetRequestCheck::sendRequestToServer",function(done) {        
        Request("https://www.google.com",(error, response) => {
            this.statusCode = response && response.statusCode;
            done();
        });
    });    
    
    it("GetRequestCheck::checkStatusCode: status code should be 200",function() {
        expect(this.statusCode).to.be(200);
    });
    
    after("GetRequestCheck::sayByeBye",function() {
        // "Google is up!" =)
    });
});

Result of code execution looks like well known Spec reporter (or any of your choice) output:

  Checking HTTP status code.
    ✓ GetRequestCheck::checkStatusCode: status code should be 200

  1 passing (292ms)

For full list of MochaSuit for TS advantages look at use cases and Q&A

Installation and running

MochaSuit for TS can be installed as any other NPM-package. Also you need to install Mocha and compiler for TypeScript by yourself.

$ npm i --save mocha-suit-ts
$ npm i -g mocha
$ npm i -g typescript

Tests code directory tree

You may organize tests directory as you wish as long as it complies requirements of Mocha framework. Considering need of translation TypeScript code to JavaScript you may embrace next tests directory tree:

$ tree .
└── test/
    ├── tsconfig.json # <- TypeScript configuration dedicated for tests
    ├── src/
    |   └──yourtest.ts  
    └── build/
        └──yourtest.js # <- automaticaly generated JavaScipt

TypeScript configuring

Major trait of MochaSuit for TS is using of TypeScript decorators, which are still language experimental feature. Hence do not forget to include experimentalDecorators in your tsconfig.json.

Here is tsc compiler configuration which is used for building MochaSuit for TS itself:

{
  "compilerOptions": {
    "outDir": "./build",
    "allowJs": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitThis": false,
    "inlineSourceMap": true,
    "lib": ["es2015"],
    "module": "commonjs",
    "target": "es5",
    "experimentalDecorators": true
  },
  "include":[
    "./src/**/*"
  ]
}

Running

Launching tests is easy as any other mocha tests:

$ tsc -p test
$ mocha --recursive test/build

Use cases

Coming soon

Q&A

Coming soon

LICENSE

Copyright (c) 2020 Kirill Sukharev. The MIT License MIT