UNPKG
spacy
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
JavaScript API for spaCy with Python REST API
github.com/ines/spacy-js
ines/spacy-js
spacy
/
tests
/
language.test.js
9 lines
(6 loc)
•
196 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
spacy
from
'../src'
; jest.
mock
(
'../src/language'
);
test
(
'creates new nlp object'
,
() =>
{
const
nlp = spacy.
load
(
'en_core_web_sm'
);
expect
(nlp).
toEqual
(expect.
any
(
Function
)); });