Skip to content

Instantly share code, notes, and snippets.

@thdtt
thdtt / script.js
Created October 26, 2020 08:28 — forked from zzNuAzz/script.js
kiểm thử tool
function get() {
return new Promise((resolve, reject) => {
fetch('https://gist.githubusercontent.com/zzNuAzz/645bc20f12d7a04bd593bc14fc01be42/raw/e4ad40db0d6c1dac9315588f92699e17c2e0e7c4/kiemthu.json') // Call the fetch function passing the url of the API as a parameter
.then(data => data.json())
.then(data => resolve(data))
.catch(() => reject());
});
}
function sleep(ms) {
@thdtt
thdtt / kiemthu.json
Created October 26, 2020 08:28 — forked from zzNuAzz/kiemthu.json
trắc nghiệm kiểm thử
[
{
"question": "Kỹ thuật được áp dụng để kiểm tra khả năng sử dụng là?",
"right": "Hộp đen"
},
{
"question": "{{Thẩm tra || Verification}} là quá trình đánh giá phần mềm có đáp ứng các yêu cầu được thiết lập trong giai đoạn trước hay không.",
"right": null
},
{