
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
cloudify-ui-common-cypress
Advanced tools
This package contains resources common to Cypress tests:
plugins directorysupport directorycypress.json filenpm install cloudify-ui-common-cypress
Cypress plugin and configuration setup can be done the following way:
// test/cypress/plugins/index.ts
import performCommonSetup from 'cloudify-ui-common-cypress/plugins';
import getWebpackConfig from '../../../webpack.config';
const setupPluginsAndConfig: Cypress.PluginConfig = (on, config) => {
config.baseUrl = 'http://localhost:9000';
return performCommonSetup(on, config, getWebpackConfig({}));
};
export default setupPluginsAndConfig;
Cypress custom commands can be added the following way:
// test/cypress/support/index.ts
import './my-commands';
// test/cypress/support/my-commands.ts
import type { GetCypressChainableFromCommands } from 'cloudify-ui-common-cypress/support';
import { addCommands } from 'cloudify-ui-common-cypress/support';
declare global {
namespace Cypress {
export interface Chainable extends GetCypressChainableFromCommands<typeof commands> {}
}
}
const commands = {
myCommand: () => cy.log('This is my command')
};
addCommands(commands);
With that, you should be able to access Cypress custom command through `cy` global in your Cypress test code.
### Configuration
Cypress runner static configuration - `cypress.json` file - can be used the following way:
```npm
cypress run -C node_modules/cloudify-ui-common-cypress/cypress.json
FAQs
Common Cloudify UI Cypress library
The npm package cloudify-ui-common-cypress receives a total of 36 weekly downloads. As such, cloudify-ui-common-cypress popularity was classified as not popular.
We found that cloudify-ui-common-cypress demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.