
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
@open-xchange/appsuite-codeceptjs
Advanced tools
App Suite specific CodeceptJS tooling.
The file src/helpers.js
contains App Suite specific CodeceptJS helpers. It is possible to overwrite any of these helpers or add new ones in projects that use this package. This might be useful for maintenance work on existing helpers or when developing new ones and can be achieved with the following changes:
// CodeceptJS configuration of a local package
// file: e2e/codecept.conf.js
const { config } = require('@open-xchange/appsuite-codeceptjs')
// import local helpers
config.helpers.AppSuite = {
require: './helper'
}
module.exports.config = config
// Local helpers
// file: e2e/helper.js
const Helper = require('@open-xchange/appsuite-codeceptjs/src/helper')
class CustomHelper extends Helper {
// This overwrites the existing `selectFolder` helper
async selectFolder (locator) {
locator = '.folder-tree ' + locator
await this.helpers.Playwright.page.locator(locator).click()
}
// This creates the new helper `newCostumHelper`
async newCostumHelper () {
await this.helpers.Playwright.waitForVisible({ css: 'html.complete' }, 10)
}
}
module.exports = CustomHelper
You can use the config object for local customization of the default CodeceptJS configuration provided by this package. For example you can change the tests directory the following way:
// CodeceptJS configuration of a local package
// file: e2e/codecept.conf.js
const { config } = require('@open-xchange/appsuite-codeceptjs')
config.tests = './costum_directory/*_test.js'
module.exports.config = config
Add this to your package.json
to ignore CVE-2025-5889 when installing this package with pnpm
:
"pnpm": {
"auditConfig": {
"ignoreCves": [
"CVE-2025-5889"
]
}
}
FAQs
OX App Suite CodeceptJS Configuration and Helpers
The npm package @open-xchange/appsuite-codeceptjs receives a total of 472 weekly downloads. As such, @open-xchange/appsuite-codeceptjs popularity was classified as not popular.
We found that @open-xchange/appsuite-codeceptjs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 14 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.