Rob Vice

Results 14 comments of Rob Vice

The documentation for the AT commands looks like there is some form of filtering, but it was never finished or implemented. Currently, we just filter for specific MAC addresses or...

@shannonmccleary-ihm Is this in a CI/CD setup? If so, make sure to run the following: `npm install -g --acceptSuiteCloudSDKLicense @oracle/suitecloud-cli` I haven't tried again in Linux, but I do have...

FYI, still having the issue with Java 17, but still not on node 16. Node 14. When I can get a chance to update our CI/CD to 16 I'll test...

> @Rvice Can you share a complete package.json? > > Which version of team-city-reporter are yo using? jest-teamcity-reporter 0.9.0 Here's the bulk of the package.json ```json { "scripts": { "test":...

I see where the problem comes in, it's in the jest.config.js ```javascript module.exports = SuiteCloudJestConfiguration.build({ projectFolder: cliConfig.defaultProjectFolder, projectType: SuiteCloudJestConfiguration.ProjectType.ACP, testEnvironment : 'node', testResultsProcessor: "jest-teamcity", coverageReporters: [ "lcov", "text", "teamcity" ],...

This may have resolved the issue in the jest.config.js ```javascript const nsExport = SuiteCloudJestConfiguration.build({ projectFolder: cliConfig.defaultProjectFolder, projectType: SuiteCloudJestConfiguration.ProjectType.ACP }); const jestParams = { "testEnvironment" : "node", "testResultsProcessor": "jest-teamcity", "coverageReporters": [...

Have you tried doing this via the tsconfig file? Create a base tsconfig.json then create your separate build ones ``` "extends": "./tsconfig.json", "compilerOptions": { "paths": { "N": ["node_modules/@hitc/netsuite-types/N"], "N/*": ["node_modules/@hitc/netsuite-types/N/*"],...

In how I use the Category Report, I'm looking specifically for "membership" statuses and not "former" statuses. In this Example: Testy O'Testerson is a FORMER member AND attended an event...