npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@spec-box/collector

v0.2.0

Published

## Описание

Downloads

10

Readme

@spec-box/collector

Описание

@spec-box/collector — это инструмент для сбора spec-box спецификаций тестов из файлов тестов Playwright.

Установка

npm install @spec-box/collector --save-dev

или

yarn add @spec-box/collector --dev

Конфигурация

Создайте файл конфигурации spec-collector.config.js, .spec-collectorrc, .spec-collectorrc.json, .spec-collectorrc.yaml, .spec-collectorrc.yml, .spec-collectorrc.js, в корне вашего проекта.

Минимальная конфигурация

module.exports = {
  projects: [
    {
      configPath: './tests/integration-tests/playwright.config.ts',
    },
  ],
  // host и specBoxProject нужны только для выгрузки
  host: 'https://your-spec-box-server.com',
  specBoxProject: 'your-project-name',
};

Пример полной конфигурации

module.exports = {
  projects: [
    {
      jsonReportPath: './integrations/test-results/report.json',
      configPath: './integrations/playwright.config.ts',
      emptyTestsYamlPath: './integrations/specBoxTests.yml',
      rootPath: './',
    },
    {
      jsonReportPath: './e2e/test-results/report.json',
      configPath: './e2e/playwright.config.ts',
      emptyTestsYamlPath: './e2e/specBoxTests.yml',
      rootPath: './my-test-dir',
    },
  ],
  formatTitle: {
    remove: ['.common'],
    replace: [
      ['.int', ' [unternal]'],
      ['.external', ' [b2b]'],
    ],
  },
  ignoreFiles: ['setup'],
  levels: 3,
  outputFile: './spec-collector-result.json',
  host: 'https://your-spec-box-server.com',
  specBoxProject: 'your-project-name',
};

Использование

Быстрый старт

Создайте файл конфигурации с настройками по умолчанию:

npx spec-collector init

Затем отредактируйте созданный файл spec-collector.config.js в соответствии с вашим проектом.

Запуск

Для корректной работе инструмента нужно чтобы запуск playwright тестов в list режиме отрабатывал без ошибок. Проверить можно выполнив

npx playwright test --list

Запускать через cli так

# сбор тест кейсов
npx spec-collector

# сбор тест кейсов с выгрузкой в spec-box
npx spec-collector -u

Команды CLI

  • npx spec-collector init — создать файл конфигурации с настройками по умолчанию
  • npx spec-collector init --force — пересоздать файл конфигурации (перезаписать существующий)
  • npx spec-collector --help — показать справку

Работа со сценариями

Пакет дает возможность хранить в кодовой базе сценарии еще не написанных тестов. Playwright не будет видеть эти тесты и они не будут видны в отчетах. Сценарии могут использоваться для понимание реального тестового покрытия относительно целевого.

import {test as baseTest} from '@playwright/test';
import {extendTest} from '@spec-box/collector';

// Расширяем базовый тест методом empty
const test = extendTest(baseTest);

// Определяем пустой тест
test.empty('Еще не реализованный тест');

// Обычный тест
test('Обычный тест', async ({page}) => {
  // ...
});

Структура проекта

  • src/cli.ts - CLI интерфейс
  • src/initCommand.ts - Команда инициализации конфига
  • src/index.ts - Основной модуль
  • src/SpecCollector.ts - Класс для сбора спецификаций
  • src/EmptyTestCollector.ts - Класс для работы со сценариями
  • src/generateReport.ts - Функция для генерации отчетов
  • src/typings.ts - Типы данных

Лицензия

MIT