v8/tools/turbolizer/test/source-resolver-test.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
306 B
TypeScript
Raw Normal View History

import { SourceResolver } from '../src/source-resolver';
import { expect } from 'chai';
import { describe, it } from 'mocha';
describe('SourceResolver', () => {
it('should be constructible', () => {
const a: SourceResolver = new SourceResolver();
expect(a.sources.length).to.equal(0);
});
});