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 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.