1.3.0 • Published 8 days ago

test-ipfs-example v1.3.0

Weekly downloads
74
License
Apache-2.0 OR MIT
Repository
github
Last release
8 days ago

test-ipfs-example

codecov CI

A test suite for testing examples using playwright for browsers and simple output matching for node

Install

$ npm i test-ipfs-example

Browser <script> tag

Loading this module through a script tag will make it's exports available as TestIpfsExample in the global namespace.

<script src="https://unpkg.com/test-ipfs-example/dist/index.min.js"></script>

Table of contents

Usage

Node.js tests

To run node js tests, create a test file similar to:

import { waitForOutput } from 'test-ipfs-example/node'

await waitForOutput('the output to expect', 'path/to/example.js')

Run it from your package.json

{
  "scripts": {
    "test": "test-node-example ./my-test.spec.js"
  }
}

Browser tests

To run browser tests, create a test file similar to:

import { setup, expect } from 'test-ipfs-example/browser'

const test = setup({
  // optionally configure server(s) - if omitted one will be created listening
  // on a random high port that serves the contents of the `dist` folder in
  // the root of the example
  servers: [{
    port: 0,
    host: '127.0.0.1',
    path: 'dist'
  }]
})

test.describe('test a browser app', () => {
  test.beforeEach(async ({ servers, page }) => {
    await page.goto(servers[0].url)
  })

  test('should have browser success', async ({ page }) => {
    // make some playwright assertions here
    await page.waitForSelector('#app')
    const connections = await page.textContent('#app')
    expect(connections).toContain('hello world')
  })
})

Run it from your package.json

{
  "scripts": {
    "test": "test-browser-example ./my-test.spec.js"
  }
}

API Docs

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

1.3.0

8 days ago

1.2.1

3 months ago

1.2.0

5 months ago

1.1.0

6 months ago

1.0.0

1 year ago

3.0.0

3 years ago

2.1.1-rc.79

3 years ago

2.1.1-rc.61

3 years ago

2.1.1-rc.60

3 years ago

2.1.1-rc.59

3 years ago

2.1.1-rc.58

3 years ago

2.1.1-rc.56

3 years ago

2.1.1-rc.51

3 years ago

2.1.1-rc.49

3 years ago

2.1.1-rc.46

3 years ago

2.1.1-rc.45

3 years ago

2.1.1-rc.42

3 years ago

2.1.1-rc.41

3 years ago

2.1.1-rc.40

3 years ago

2.1.1-rc.39

3 years ago

2.1.1-rc.35

3 years ago

2.1.1-rc.33

3 years ago

2.1.1-rc.30

3 years ago

2.1.1-rc.29

3 years ago

2.1.1-rc.24

3 years ago

2.1.1-rc.23

3 years ago

2.1.1-rc.21

3 years ago

2.1.1-rc.19

3 years ago

2.1.1-rc.17

3 years ago

2.1.1-rc.13

3 years ago

2.1.1-rc.12

3 years ago

2.1.1-rc.10

3 years ago

2.1.1-rc.8

3 years ago

2.1.1-rc.6

4 years ago

2.1.1-rc.4

4 years ago

2.1.1-rc.5

4 years ago

2.1.1-rc.2

4 years ago

2.1.0

4 years ago

2.0.4-rc.190

4 years ago

2.0.4-rc.188

4 years ago

2.0.4-rc.187

4 years ago

2.0.4-rc.185

4 years ago

2.0.4-rc.184

4 years ago

2.0.4-rc.183

4 years ago

2.0.4-rc.181

4 years ago

2.0.4-rc.175

4 years ago

2.0.4-rc.174

4 years ago

2.0.4-rc.173

4 years ago

2.0.4-rc.171

4 years ago

2.0.4-rc.170

4 years ago

2.0.4-rc.168

4 years ago

2.0.4-rc.169

4 years ago

2.0.4-rc.166

4 years ago

2.0.4-rc.165

4 years ago

2.0.4-rc.163

4 years ago

2.0.4-rc.162

4 years ago

2.0.4-rc.161

4 years ago

2.0.4-rc.160

4 years ago

2.0.4-rc.156

4 years ago

2.0.4-rc.150

4 years ago

2.0.3

4 years ago

2.0.3-rc.5

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

1.0.1-rc.5621

4 years ago