TypeScript
Enhetstestning
Sök…
Alsace
Alsatian är ett enhetstestningsramverk skrivet i TypeScript. Det gör det möjligt att använda testfall och matar ut TAP-kompatibel markering.
För att använda den, installera den från npm
:
npm install alsatian --save-dev
Ställ sedan in en testfil:
import { Expect, Test, TestCase } from "alsatian";
import { SomeModule } from "../src/some-module";
export SomeModuleTests {
@Test()
public statusShouldBeTrueByDefault() {
let instance = new SomeModule();
Expect(instance.status).toBe(true);
}
@Test("Name should be null by default")
public nameShouldBeNullByDefault() {
let instance = new SomeModule();
Expect(instance.name).toBe(null);
}
@TestCase("first name")
@TestCase("apples")
public shouldSetNameCorrectly(name: string) {
let instance = new SomeModule();
instance.setName(name);
Expect(instance.name).toBe(name);
}
}
För en fullständig dokumentation, se alsatians GitHub-repo .
chai-immutable plugin
Installera från npm chai, chai-immutable och ts-node
npm install --save-dev chai chai-immutable ts-node
Installera typer för mocka och chai
npm install --save-dev @types/mocha @types/chai
Skriv enkel testfil:
import {List, Set} from 'immutable'; import * as chai from 'chai'; import * as chaiImmutable from 'chai-immutable'; chai.use(chaiImmutable); describe('chai immutable example', () => { it('example', () => { expect(Set.of(1,2,3)).to.not.be.empty; expect(Set.of(1,2,3)).to.include(2); expect(Set.of(1,2,3)).to.include(5); }) })
Kör den i konsolen:
mocha --compilers ts:ts-node/register,tsx:ts-node/register 'test/**/*.spec.@(ts|tsx)'
tejp
band är minimalistiskt JavaScript-testramverk, det matar ut TAP-kompatibel markering.
För att installera tape
med npm
run-kommando
npm install --save-dev tape @types/tape
För att använda tape
med Typescript måste du installera ts-node
som ett globalt paket, för att göra detta körkommando
npm install -g ts-node
Nu är du redo att skriva ditt första test
//math.test.ts
import * as test from "tape";
test("Math test", (t) => {
t.equal(4, 2 + 2);
t.true(5 > 2 + 2);
t.end();
});
För att utföra testkörningskommandot
ts-node node_modules/tape/bin/tape math.test.ts
I utgången bör du se
TAP version 13
# Math test
ok 1 should be equal
ok 2 should be truthy
1..2
# tests 2
# pass 2
# ok
Bra jobb, du körde just ditt TypeScript-test.
Kör flera testfiler
Du kan köra flera testfiler samtidigt med sökvägkort. För att utföra alla skrivmaskin tester i tests
katalog startorder
ts-node node_modules/tape/bin/tape tests/**/*.ts
jest (ts-jest)
jest är smärtfritt JavaScript-testramverk av Facebook, med ts-jest kan användas för att testa TypeScript-kod.
För att installera jest med npm run-kommando
npm install --save-dev jest @types/jest ts-jest typescript
För enkel användning installera jest
som ett globalt paket
npm install -g jest
För att göra jest
fungera med TypeScript måste du lägga till konfiguration i package.json
//package.json
{
...
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": ["ts", "tsx", "js"]
}
}
Nu är jest
klart. Antag att vi har provet fizz buz för att testa
//fizzBuzz.ts
export function fizzBuzz(n: number): string {
let output = "";
for (let i = 1; i <= n; i++) {
if (i % 5 && i % 3) {
output += i + ' ';
}
if (i % 3 === 0) {
output += 'Fizz ';
}
if (i % 5 === 0) {
output += 'Buzz ';
}
}
return output;
}
Exempelstest kan se ut
//FizzBuzz.test.ts
/// <reference types="jest" />
import {fizzBuzz} from "./fizzBuzz";
test("FizzBuzz test", () =>{
expect(fizzBuzz(2)).toBe("1 2 ");
expect(fizzBuzz(3)).toBe("1 2 Fizz ");
});
För att utföra testkörning
jest
I utgången bör du se
PASS ./fizzBuzz.test.ts
✓ FizzBuzz test (3ms)
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 1.46s, estimated 2s
Ran all test suites.
Kodstäckning
jest
stöder generering av kodtäckningsrapporter.
För att använda kodtäckning med TypeScript måste du lägga till en annan konfigurationsrad till package.json
.
{
...
"jest": {
...
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js"
}
}
Att köra test med generering av täckningsrapportkörning
jest --coverage
Om det används med vårt provfizz-surr bör du se
PASS ./fizzBuzz.test.ts
✓ FizzBuzz test (3ms)
-------------|----------|----------|----------|----------|----------------|
File | % Stmts | % Branch | % Funcs | % Lines |Uncovered Lines |
-------------|----------|----------|----------|----------|----------------|
All files | 92.31 | 87.5 | 100 | 91.67 | |
fizzBuzz.ts | 92.31 | 87.5 | 100 | 91.67 | 13 |
-------------|----------|----------|----------|----------|----------------|
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 1.857s
Ran all test suites.
jest
också skapat mapp coverage
som innehåller täckning rapport i olika format, inklusive användarvänliga html rapport coverage/lcov-report/index.html