blob: 0fa77fb8f48be07fa5e43cddacdfc92099a623c2 [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 {SnapshotTester} from '../../../front_end/testing/SnapshotTester.js';
describe('Snapshot test harness', function() {
const snapshotTester = new SnapshotTester(this, import.meta);
it('supports snapshot assertion in test harness', function() {
snapshotTester.assert(this, 'snapshot harness test content');
});
});