From 94502e4d968990d492f44a2f7dde0a195abb88bc Mon Sep 17 00:00:00 2001 From: Ayushman Chhabra <14110965+ayushmanchhabra@users.noreply.github.com> Date: Sat, 17 Aug 2024 22:32:04 +0530 Subject: [PATCH] chore(test): coverage for nw.App.filteredArgv --- tests/fixtures/nw/app/index.html | 8 +++++++- tests/specs/nw/app.test.js | 23 ++++++++++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/tests/fixtures/nw/app/index.html b/tests/fixtures/nw/app/index.html index 55fee60..d83eef8 100644 --- a/tests/fixtures/nw/app/index.html +++ b/tests/fixtures/nw/app/index.html @@ -8,6 +8,7 @@ document.addEventListener('DOMContentLoaded', () => { document.getElementById('nw-app-argv').innerText = nw.App.argv; document.getElementById('nw-app-fullargv').innerText = nw.App.fullArgv; + document.getElementById('nw-app-filteredargv').innerText = nw.App.filteredArgv; });