blob: 7e50d07000e5cd017f9c123c70cb4b8bf6d6585c [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');
});
it('should run a basic unit test successfully', () => {
assert.strictEqual(1 + 1, 2, 'Math works');
});
});