blob: 8a204da4ed010b8a796aff716c4c815da8eb2e63 [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('Block', () => {
afterEach(() => {
throw new Error('afterEach hook failed');
});
it('run', () => {
assert.strictEqual(1 + 1, 2);
});
});