You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The require statements written in a lua module are not shown as covered. Example below - local inventory = {} local error_handler = require "error_handler" local logger = require "utils.logger"
The functions defined in the same lua module are correctly being reported Covered.
Either those should not be considered for coverage at all or it should be shown as covered.
The text was updated successfully, but these errors were encountered:
The require statements written in a lua module are not shown as covered. Example below -
local inventory = {}
local error_handler = require "error_handler"
local logger = require "utils.logger"
The functions defined in the same lua module are correctly being reported Covered.
Either those should not be considered for coverage at all or it should be shown as covered.
The text was updated successfully, but these errors were encountered: