blob: 2085221364b585956865fd0ef3290055c9ac2c8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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);
});
});
|