Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 893 Bytes

README.md

File metadata and controls

41 lines (36 loc) · 893 Bytes

gemini-clean

Find and remove reduntant gemini references without running actual tests ;)

P.S. Maybe the proper way to do this job — implement yet another mode in gemini itself. But let's check if this functionally is really needed someone else.

Install

npm install gemini-clean
gemini-clean --help

Example

gemini-clean gemini/suites --reference=gemini/references

Example using config

// .gemini-clean.js
module.exports = [
    {
        suites: ['gemini/images/desktop'],
        references: ['gemini/references/images/desktop'],
        globals: {
            platform: 'desktop'
        }
    },
    {
        suites: ['gemini/video/desktop'],
        references: ['gemini/references/video/desktop'],
        globals: {
            platform: 'desktop'
        }
    }
]
gemini-clean