Skip to content

Commit

Permalink
Update files with new names
Browse files Browse the repository at this point in the history
- new organization name
- new npm package name
  • Loading branch information
jacksteamdev committed Jun 10, 2020
1 parent ed5fbdb commit 673eb7b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **Change Log** 📜📝

All notable changes to "**@bumble/jest-chrome**" library will be
All notable changes to "**jest-chrome**" library will be
documented in this file.

The format is based on
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `@bumble/jest-chrome`
# `jest-chrome`

A complete mock of the Chrome API for Chrome extensions, for use
with Jest.
Expand All @@ -15,7 +15,7 @@ on
## Installation

```sh
npm i @bumble/jest-chrome -D
npm i jest-chrome -D
```

Set `chrome` in the global scope during setup so that it is
Expand All @@ -36,14 +36,14 @@ Use the setup file to assign the mocked `chrome` object to the
```javascript
// jest.setup.js

Object.assign(global, require('@bumble/jest-chrome'))
Object.assign(global, require('jest-chrome'))
```

Import `chrome` from `@bumble/jest-chrome` for Intellisense and
Import `chrome` from `jest-chrome` for Intellisense and
linting. This is the same object as `chrome` in the global scope.

```javascript
import { chrome } from '@bumble/jest-chrome'
import { chrome } from 'jest-chrome'
```

## Usage
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@bumble/jest-chrome",
"name": "jest-chrome",
"version": "0.5.3",
"description": "Test Chrome extensions with Jest. A complete mock of the Chrome API.",
"keywords": [
Expand All @@ -12,7 +12,8 @@
"test",
"typescript"
],
"repository": "bumble-org/jest-chrome",
"repository": "github:extend-chrome/jest-chrome",
"bugs": "https://github.com/extend-chrome/jest-chrome/issues",
"license": "MIT",
"author": "Jack Steam <jacksteamdev@gmail.com>",
"main": "lib/index.cjs.js",
Expand Down

0 comments on commit 673eb7b

Please sign in to comment.