Skip to content

Commit

Permalink
fix: fix TypeScript 2554 error
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzafroide committed Nov 7, 2018
1 parent de5aca6 commit 5a32a4e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/__tests__/volume.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ describe('volume', () => {
});
});
describe('.read(fd, buffer, offset, length, position, callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.readFileSync(path[, options])', () => {
const vol = new Volume;
Expand Down Expand Up @@ -595,7 +595,7 @@ describe('volume', () => {
});
});
describe('.symlink(target, path[, type], callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.realpathSync(path[, options])', () => {
const vol = new Volume;
Expand Down Expand Up @@ -662,7 +662,7 @@ describe('volume', () => {
});
});
describe('.lstat(path, callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.statSync(path)', () => {
const vol = new Volume;
Expand Down Expand Up @@ -695,7 +695,7 @@ describe('volume', () => {
});
});
describe('.stat(path, callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.fstatSync(fd)', () => {
const vol = new Volume;
Expand All @@ -713,7 +713,7 @@ describe('volume', () => {
});
});
describe('.fstat(fd, callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.linkSync(existingPath, newPath)', () => {
const vol = new Volume;
Expand All @@ -733,7 +733,7 @@ describe('volume', () => {
});
});
describe('.link(existingPath, newPath, callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.readdirSync(path)', () => {
it('Returns simple list', () => {
Expand All @@ -760,7 +760,7 @@ describe('volume', () => {
});
});
describe('.readdir(path, callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.readlinkSync(path[, options])', () => {
it('Simple symbolic link to one file', () => {
Expand Down Expand Up @@ -808,7 +808,7 @@ describe('volume', () => {
});
});
describe('.ftruncate(fd[, len], callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.truncateSync(path[, len])', () => {
const vol = new Volume;
Expand All @@ -828,7 +828,7 @@ describe('volume', () => {
});
});
describe('.truncate(path[, len], callback)', () => {
xit('...');
xit('...', () => {});
});
describe('.utimesSync(path, atime, mtime)', () => {
const vol = new Volume;
Expand Down Expand Up @@ -878,7 +878,7 @@ describe('volume', () => {
});
});
describe('.mkdir(path[, mode], callback)', () => {
xit('...');
xit('...', () => {});
xit('Create /dir1/dir2/dir3', () => { });
});
describe('.mkdtempSync(prefix[, options])', () => {
Expand Down

0 comments on commit 5a32a4e

Please sign in to comment.