7 lines
185 B
JavaScript
7 lines
185 B
JavaScript
const expect = require('expect');
|
|
const {speechSynthesis} = require('./_30s.js');
|
|
|
|
test('speechSynthesis is a Function', () => {
|
|
expect(speechSynthesis).toBeInstanceOf(Function);
|
|
});
|