相当于Node JS断言库的浏览器

时间:2019-09-12 09:37:21

标签: javascript node.js assert

我是否可以从CDN访问Node JS's assert并在浏览器中运行该端口?

我看过https://www.npmjs.com/package/assert,但是我没有使用browserify,所以我认为我不能使用它。

1 个答案:

答案 0 :(得分:0)

这可能对您有用。看看这个git repo-jest-lite。说它可以让您在浏览器中开玩笑,并具有CDN。

该站点的一个示例:

import {describe, it, expect, run} from 'jest-lite';

function sum(x: number, y: number) {
  return x + y;
}

describe('sum', () => {
  it('adds the two given numbers', () => {
    expect(sum(2, 2)).toBe(4);
  });
});

const result = await run();
console.log(result);

有关更多信息,请参阅文档。

祝你好运