1.0.3 • Published 4 years ago

qualityforward-node v1.0.3

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

QualityForward for Node.js

Node.jsでQualityForwardを操作するためのライブラリです。

使い方

初期化

import { QualityForward, TestSuite} from 'qualityforward-node';
const client = new QualityForward(API_KEY);

プロジェクト取得

const project = await client.project.current();

テストスイート取得

const testSuites: TestSuite[] = await client.getTestSuites();
const testSuite: TestSuite = testSuites[0];

テストスイート作成、更新

testSuite.name = '新しいテストツイート名';
if (await testSuite.save()) {
  // 作成、更新成功
} else {
  // 作成、更新失敗
}

テストスイート削除

if (await testSuite.destroy()) {
  // 削除成功
} else {
  // 削除失敗
}

テストフェーズの取得

const testPhases: TestPhase[] = await client.getTestPhases();

テストフェーズの作成

const testPhase: TestPhase = client.TestPhase();
testPhase.project_id = 748;
testPhase.name = 'test';
testPhase.start_on = new Date();
testPhase.end_on = new Date();
if (await testPhase.save()) {
  console.log(testPhase)
} else {
  console.log(testPhase.qf.error);
}

ライセンス

MIT License

1.0.3

4 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago