Chrome 擴充功能單元測試
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
單元測試可讓小部分的程式碼與擴充功能的其他部分及瀏覽器之外隔離。舉例來說,您可以編寫單元測試,確保輔助方法正確將值寫入儲存空間。
編寫不使用擴充功能 API 的程式碼可以使用 Jest 等架構,照常進行測試。為了讓程式碼更容易測試,建議使用依附元件插入等技巧,這有助於移除低階實作中 Chrome 命名空間的依附元件。
如果需要測試包含擴充功能 API 的程式碼,請考慮使用模擬。
範例:搭配使用模擬和 Jest
建立 jest.config.js
檔案,宣告在所有測試之前執行的設定檔:
jest.config.js:
module.exports = {
setupFiles: ['<rootDir>/mock-extension-apis.js']
};
在 mock-extension-apis.js
中,為您預期呼叫的特定函式新增實作:
mock-extension-apis.js:
global.chrome = {
tabs: {
query: async () => { throw new Error("Unimplemented.") };
}
};
接著,使用 jest.spy
模擬測試中的傳回值:
test("getActiveTabId returns active tab ID", async () => {
jest.spyOn(chrome.tabs, "query").mockResolvedValue([{
id: 3,
active: true,
currentWindow: true
}]);
expect(await getActiveTabId()).toBe(3);
});
後續步驟
為確保擴充功能正常運作,建議您加入端對端測試。如需完整的教學課程,請參閱使用 Puppeteer 測試 Chrome 擴充功能。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2023-10-12 (世界標準時間)。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"缺少我需要的資訊"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"過於複雜/步驟過多"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"過時"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"翻譯問題"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"示例/程式碼問題"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"其他"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"容易理解"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"確實解決了我的問題"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"其他"
}]
{"lastModified": "\u4e0a\u6b21\u66f4\u65b0\u6642\u9593\uff1a2023-10-12 (\u4e16\u754c\u6a19\u6e96\u6642\u9593)\u3002"}
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2023-10-12 (世界標準時間)。"],[],[]]