blob: 42cb110e54a8f9968618943069667f6998d783b9 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {initialize} from './index.js';
import {loadTestModule} from './test_loader_util.js';
document.addEventListener('DOMContentLoaded', () => {
// Using a query of "module" provides a hook for the test suite to perform
// setup actions.
if (!loadTestModule()) {
initialize();
}
});