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