Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
describe("public class methods", () => {
var video = new Video();
it("must create react element", () => {
(video: React.ElementRef);
});
describe("seek", () => {
it("seek must call with number ", () => {
video.seek(1);
// $ExpectError
video.seek();
});
it("must call seek with number and tolerance IOS argument", () => {
var toleranceIOS = 1;
describe('public class methods', () => {
var video = new Video();
it('should create react element', () => {
(video: React.ElementRef);
});
describe('seek', () => {
it('seek should call with number ', () => {
video.seek(1);
// $ExpectError
video.seek();
});
it('should call seek with number and tolerance IOS argument', () => {
var toleranceIOS = 1;