Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

escss-estest

Package Overview
Dependencies
Maintainers
0
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

escss-estest

A runtime testing library inspired by TDD and TypeScript to achieve 100% coverage.

  • 1.4.21
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
535
increased by27.99%
Maintainers
0
Weekly downloads
 
Created
Source

logo

Language

  • 中文

What is ESCSS-ESTest?

ESCSS-ESTest is a runtime testing library inspired by TDD and TypeScript to achieve 100% coverage.

Core Concept - Water Filter

function foo() {
  {
    // unhappy path(throw error)
  }

  // happy path
}

Usage

Examples

ESTest(NaN, "NaN"); // new
ESTest([], "array"); // new
ESTest(null, "null"); // new
ESTest(undefined, "undefined"); // new
ESTest(1, "number");
ESTest("foo", "string");
ESTest(true, "boolean");
ESTest({}, "object");
ESTest(1n, "bigint");
ESTest(Symbol(), "symbol");
ESTest(function () {}, "function");
ESTest(1, "object"); // error
ESTest(1, "object", "foo"); // error message

General

import { ESTest } from "escss-estest";

let isEnable = true;

// Testing input in {...}
function sum(a, b) {
  {
    ESTest(a, "number");
    ESTest(b, "number");
    ESTest(isEnable, "boolean");
  }

  if (!isEnable) return;

  return a + b;
}

async/await

import { ESTest } from "escss-estest";

async function getData() {
  const response = await fetch("https://jsonplaceholder.typicode.com/todos/1");
  const data = await response.json();

  {
    ESTest(data, 'object')
    ESTest(data.userId, "number");
    ESTest(data.id, "number");
    ESTest(data.title, "string");
    ESTest(data.completed, "boolean");
  }

  console.log(data);
}

getData(); // pass: response data is as expected

Class

import { ESTest } from "escss-estest";

class Animal {
  constructor(name, age) {
    {
      ESTest(name, "string");
      ESTest(age, "number");
    }

    this.name = name;
    this.age = age;
  }
}

new Animal("cat", 10); // pass: response data is as expected

Installation

  npm add escss-estest
  yarn add escss-estest
  pnpm add escss-estest
  bun add escss-estest
import { ESTest } from "escss-estest";

ESTest('Happy Coding!', 'string') // pass

Nuxt 3

  npx nuxi module add nuxt-escss-estest
<script setup>
ESTest('Happy Coding!', 'string') // pass
</script>

License

see

Keywords

FAQs

Package last updated on 25 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc