0.6.8 • Published 6 months ago

@ayazmo/utils v0.6.8

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

Ayazmo Utilities

This package provides a collection of utility functions for the Ayazmo framework.

Installation

npm install @ayazmo/utils

Features

  • Configuration helpers
  • File system utilities
  • Package management utilities
  • String utilities
  • Auth utilities
  • Error handling
  • Testing utilities

Testing Utilities

The package includes comprehensive testing utilities that make it easier to test Ayazmo applications and plugins:

  • Server Builder: Create temporary Ayazmo server instances for testing
  • Config Registry: Manage temporary configuration files for tests
  • Host Utilities: Helper functions for working with server instances in tests

For detailed documentation on the testing utilities, see:

Example Usage

import { buildTestServer, cleanupAllTestConfigs } from '@ayazmo/utils'

describe('my plugin test', () => {
  let server, fastifyInstance

  before(async () => {
    server = await buildTestServer('my-test', {
      // Test configuration
      plugins: {
        'my-plugin': {
          // Plugin configuration
        }
      }
    })
    
    fastifyInstance = await server.startAndGetInstance()
  })
  
  after(async () => {
    await server.cleanup()
    await cleanupAllTestConfigs()
  })
  
  it('should test my plugin', async () => {
    // Your test code here
  })
})

API Documentation

For full API documentation, see the JSDoc comments in the source code.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

0.6.7

6 months ago

0.6.6

7 months ago

0.6.8

6 months ago

0.6.3

8 months ago

0.6.2

8 months ago

0.6.5

7 months ago

0.6.4

7 months ago

0.5.0

9 months ago

0.4.1

11 months ago

0.4.0

11 months ago

0.6.1

9 months ago

0.6.0

9 months ago

0.5.1

9 months ago

0.3.0

12 months ago

0.2.7

1 year ago

0.2.6

1 year ago

0.2.5

1 year ago

0.1.31

1 year ago

0.1.32

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.4

1 year ago

0.1.30

1 year ago

0.1.21

1 year ago

0.1.22

1 year ago

0.1.23

1 year ago

0.1.24

1 year ago

0.1.25

1 year ago

0.1.26

1 year ago

0.1.27

1 year ago

0.1.28

1 year ago

0.1.29

1 year ago

0.1.20

1 year ago

0.1.18

1 year ago

0.1.13

2 years ago

0.1.10

2 years ago

0.1.11

2 years ago

0.1.8

2 years ago

0.1.9

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.4

2 years ago

0.1.2

2 years ago