Skip to content

Commit ed06503

Browse files
committed
Add node to testing suite. Add plugin validation note in changelog.
1 parent 362689b commit ed06503

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## 9.2.0 (not released)
44

5+
### Noticeable changes
6+
7+
- Plugins will now validate that their `register` property is a
8+
function. If this property is not present, it will skip this
9+
validation and continue to the next plugin.
10+
511
### Internal changes
612

713
- Internalized `is-generator` package to reduce dependencies and cut

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,10 @@ audit:
5656
@gzip -c $(DIST)/microcosm.build.js | wc -c
5757

5858
test:
59-
NODE_ENV=test karma start --single-run
60-
NODE_ENV=test make test-fast
59+
@ echo "Testing browsers..."
60+
@ NODE_ENV=test karma start --single-run
61+
@ echo "Testing node..."
62+
@NODE_ENV=test make test-fast
6163

6264
test-fast: $(shell find {src,examples} -name '*-test.js')
6365
@ mocha -R dot --compilers js:babel/register $^

0 commit comments

Comments
 (0)