blob: 116c38be2d4888bcb914a6a5c6955def7c15549e [file]
// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {assert} from 'chai';
describe('unit', () => {
it('should run a basic unit test successfully', () => {
assert.strictEqual(1 + 1, 2, 'Math works');
});
});