mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
10 lines
321 B
JavaScript
10 lines
321 B
JavaScript
|
import { expect } from 'chai';
|
||
|
import {AstroTelemetry} from '../dist/index.js';
|
||
|
|
||
|
describe('AstroTelemetry', () => {
|
||
|
it('initializes when expected arguments are given', () => {
|
||
|
const telemetry = new AstroTelemetry({ version: '0.0.0-test.1' });
|
||
|
expect(telemetry).to.be.instanceOf(AstroTelemetry);
|
||
|
});
|
||
|
});
|