blob: 5679168a50af9a5c81d40b48e7d4af4fd9116b5c [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2014 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.
-->
<link rel="import" href="/base/base.html">
<script>
'use strict';
tr.exportTo('tr.b.unittest', function() {
var TestStatus = {
PENDING: 'pending-status',
RUNNING: 'running-status',
DONE_RUNNING: 'done-running-status'
};
var TestTypes = {
UNITTEST: 'unittest-type',
PERFTEST: 'perftest-type'
};
return {
TestStatus: TestStatus,
TestTypes: TestTypes
};
});
</script>